0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/tools/lint.py

30 lines
989 B
Python
Raw Normal View History

2018-07-08 01:56:03 -04:00
#!/usr/bin/env python
2019-01-21 14:03:30 -05:00
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2018-07-08 01:56:03 -04:00
# Does google-lint on c++ files and ts-lint on typescript files
import os
2018-11-30 03:27:41 -05:00
import sys
2019-01-24 10:54:43 -05:00
from util import enable_ansi_colors, find_exts, root_path, run
enable_ansi_colors()
2018-07-08 01:56:03 -04:00
third_party_path = os.path.join(root_path, "third_party")
cpplint = os.path.join(third_party_path, "cpplint", "cpplint.py")
tslint = os.path.join(third_party_path, "node_modules", "tslint", "bin",
"tslint")
os.chdir(root_path)
run([
2019-01-29 21:31:59 -05:00
"python", cpplint, "--filter=-build/include_subdir", "--repository=libdeno",
"--extensions=cc,h", "--recursive", "libdeno"
])
2018-07-27 02:51:19 -04:00
run(["node", tslint, "-p", ".", "--exclude", "**/gen/**/*.ts"])
2018-10-05 10:20:10 -04:00
run([
"node", tslint, "./js/**/*_test.ts", "./tests/**/*.ts", "--exclude",
2018-10-05 20:41:57 -04:00
"**/gen/**/*.ts", "--project", "tsconfig.json"
2018-10-05 10:20:10 -04:00
])
2018-11-30 03:27:41 -05:00
run([sys.executable, "third_party/depot_tools/pylint.py"] +
find_exts(["tools", "build_extra"], [".py"], skip=["tools/clang"]))