diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-08 02:24:29 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-08 13:40:18 -0400 |
commit | f917c5e722d7ee5abd58704eb0e5d49072249e94 (patch) | |
tree | 48eb2e95d18c9d1fbdfcd0864ca09a6e64d79f5a /tools/lint.py | |
parent | 6c79b471aa5cf2c87d237015f5dacc5a7ed03b67 (diff) |
Clean up tools/
- Factor out tools/util.py
- Move js/*.py to tools.
- Rewrite tools/format.sh in python.
- Run lint first in travis.
Diffstat (limited to 'tools/lint.py')
-rwxr-xr-x | tools/lint.py | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/tools/lint.py b/tools/lint.py index 1fa0d461d..452d44104 100755 --- a/tools/lint.py +++ b/tools/lint.py @@ -2,7 +2,7 @@ # Does google-lint on c++ files and ts-lint on typescript files import os -import subprocess +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") @@ -10,21 +10,9 @@ cpplint = os.path.join(third_party_path, "cpplint", "cpplint.py") tslint = os.path.join(third_party_path, "node_modules", "tslint", "bin", "tslint") - -def run(args): - print(" ".join(args)) - env = os.environ.copy() - subprocess.check_call(args, env=env) - - -def main(): - 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"]) - - -if __name__ == "__main__": - main() +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"]) |