2018-07-08 01:56:03 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Does google-lint on c++ files and ts-lint on typescript files
|
|
|
|
|
|
|
|
import os
|
2018-09-02 17:37:14 -04:00
|
|
|
from util import enable_ansi_colors, run
|
|
|
|
|
|
|
|
enable_ansi_colors()
|
2018-07-08 01:56:03 -04:00
|
|
|
|
|
|
|
root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
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")
|
|
|
|
|
2018-07-08 02:24:29 -04:00
|
|
|
os.chdir(root_path)
|
|
|
|
run([
|
|
|
|
"python", cpplint, "--filter=-build/include_subdir", "--repository=src",
|
|
|
|
"--extensions=cc,h", "--recursive", "src/."
|
|
|
|
])
|
2018-10-05 07:29:55 -04:00
|
|
|
|
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
|
|
|
])
|