mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
Rewrite tools/lint.sh in python (#343)
This commit is contained in:
parent
740b47db6c
commit
cf0c0668da
3 changed files with 31 additions and 12 deletions
|
@ -48,4 +48,4 @@ script:
|
||||||
- $BUILD_PATH/handlers_test
|
- $BUILD_PATH/handlers_test
|
||||||
- $BUILD_PATH/deno_cc foo bar
|
- $BUILD_PATH/deno_cc foo bar
|
||||||
- $BUILD_PATH/deno meow
|
- $BUILD_PATH/deno meow
|
||||||
- ./tools/lint.sh
|
- ./tools/lint.py
|
||||||
|
|
30
tools/lint.py
Executable file
30
tools/lint.py
Executable file
|
@ -0,0 +1,30 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
# Does google-lint on c++ files and ts-lint on typescript files
|
||||||
|
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
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")
|
||||||
|
|
||||||
|
|
||||||
|
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()
|
|
@ -1,11 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# TODO(ry) Rewrite this script in python for portability to Windows.
|
|
||||||
set -e
|
|
||||||
cd `dirname "$0"`/..
|
|
||||||
./third_party/cpplint/cpplint.py \
|
|
||||||
--filter=-build/include_subdir \
|
|
||||||
--repository=src \
|
|
||||||
src/*.cc \
|
|
||||||
src/*.h
|
|
||||||
node third_party/node_modules/.bin/tslint -p . \
|
|
||||||
--exclude js/msg_generated.ts
|
|
Loading…
Reference in a new issue