Files
OpenROAD/tclint.toml
Øyvind Harboe 5eb007b7bd bazel: fix lint scripts to use git ls-files and find workspace
- 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>
2026-03-17 20:12:47 +01:00

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