summaryrefslogtreecommitdiff
path: root/tools/lint.py
diff options
context:
space:
mode:
authorcedric05 <kesavararapu.siva@gmail.com>2018-10-06 06:11:57 +0530
committerRyan Dahl <ry@tinyclouds.org>2018-10-05 21:13:35 -0400
commitba6c6174320bfd0d2566f3aaa619570e6ac07c01 (patch)
tree29944bca2e354c7c6d6ca2820a0271cc77e1ebcf /tools/lint.py
parent3c212ddd1ead9c3414fd4e3481825d2c4c4cc6eb (diff)
tslint warning supress using tsconfig
Diffstat (limited to 'tools/lint.py')
-rwxr-xr-xtools/lint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lint.py b/tools/lint.py
index 95ce2eb33..4471dafae 100755
--- a/tools/lint.py
+++ b/tools/lint.py
@@ -21,5 +21,5 @@ run([
run(["node", tslint, "-p", ".", "--exclude", "**/gen/**/*.ts"])
run([
"node", tslint, "./js/**/*_test.ts", "./tests/**/*.ts", "--exclude",
- "**/gen/**/*.ts"
+ "**/gen/**/*.ts", "--project", "tsconfig.json"
])