mirror of
https://github.com/The-OpenROAD-Project/OpenROAD.git
synced 2026-06-06 00:02:41 +08:00
- Tests were scanning 0 files because BUILD_WORKSPACE_DIRECTORY is unset in test context. Resolve workspace from tclint.toml symlink. - fix_lint failed because readlink -f resolved through runfiles symlinks. Use directory-based path resolution instead. - All three scripts now use git ls-files to avoid broken symlinks in gitignored directories like tmp/. - Add tmp/ to tclint.toml excludes, fix leading whitespace. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
15 lines
169 B
TOML
15 lines
169 B
TOML
exclude = [
|
|
"src/sta/",
|
|
"tmp/",
|
|
]
|
|
|
|
ignore = [
|
|
"unbraced-expr",
|
|
]
|
|
|
|
[style]
|
|
indent = 2
|
|
line-length = 100
|
|
indent-namespace-eval = false
|
|
spaces-in-braces = true
|