diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-09-23 11:39:20 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 11:39:20 +1000 |
commit | 751bb45a0a4ca4ab3baf5e5037c0b10f0430aeb6 (patch) | |
tree | b02ca1ea7f96b9d844fef5981383fffea788c9c3 /tools/lint.py | |
parent | 68fd7a927b26c3e72cf73515821450f3aa252014 (diff) |
fix: ignore fileExists in tsc host (#7635)
Fixes #7630
Diffstat (limited to 'tools/lint.py')
-rwxr-xr-x | tools/lint.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/lint.py b/tools/lint.py index e7f967140..76f51404d 100755 --- a/tools/lint.py +++ b/tools/lint.py @@ -66,13 +66,14 @@ def eslint(): ":!:cli/tests/swc_syntax_error.ts", ":!:std/**/testdata/*", ":!:std/**/node_modules/*", + ":!:cli/bench/node*.js", ":!:cli/compilers/wasm_wrap.js", + ":!:cli/dts/**", + ":!:cli/tests/encoding/**", ":!:cli/tests/error_syntax.js", ":!:cli/tests/lint/**", - ":!:cli/tests/encoding/**", - ":!:cli/dts/**", + ":!:cli/tests/tsc/**", ":!:cli/tsc/*typescript.js", - ":!:cli/bench/node*.js", ]) if source_files: max_command_len = 30000 |