summaryrefslogtreecommitdiff
path: root/tools/lint.py
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-09-23 11:39:20 +1000
committerGitHub <noreply@github.com>2020-09-23 11:39:20 +1000
commit751bb45a0a4ca4ab3baf5e5037c0b10f0430aeb6 (patch)
treeb02ca1ea7f96b9d844fef5981383fffea788c9c3 /tools/lint.py
parent68fd7a927b26c3e72cf73515821450f3aa252014 (diff)
fix: ignore fileExists in tsc host (#7635)
Fixes #7630
Diffstat (limited to 'tools/lint.py')
-rwxr-xr-xtools/lint.py7
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