mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
f917c5e722
- Factor out tools/util.py - Move js/*.py to tools. - Rewrite tools/format.sh in python. - Run lint first in travis.
18 lines
645 B
Python
Executable file
18 lines
645 B
Python
Executable file
#!/usr/bin/env python
|
|
# Does google-lint on c++ files and ts-lint on typescript files
|
|
|
|
import os
|
|
from util import run
|
|
|
|
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")
|
|
|
|
os.chdir(root_path)
|
|
run([
|
|
"python", cpplint, "--filter=-build/include_subdir", "--repository=src",
|
|
"--extensions=cc,h", "--recursive", "src/."
|
|
])
|
|
run(["node", tslint, "-p", ".", "--exclude", "js/msg_generated.ts"])
|