mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
b8a537d020
A new low-level crate with focus on speed. This doesn't yet hook into the existing code base.
29 lines
1,004 B
Python
Executable file
29 lines
1,004 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
# Does google-lint on c++ files and ts-lint on typescript files
|
|
|
|
import os
|
|
import sys
|
|
from util import enable_ansi_colors, find_exts, root_path, run
|
|
|
|
enable_ansi_colors()
|
|
|
|
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=libdeno", "--extensions=cc,h", "--recursive", "libdeno"
|
|
])
|
|
|
|
run(["node", tslint, "-p", ".", "--exclude", "**/gen/**/*.ts"])
|
|
run([
|
|
"node", tslint, "./js/**/*_test.ts", "./tests/**/*.ts", "./core/*.js",
|
|
"--exclude", "**/gen/**/*.ts", "--project", "tsconfig.json"
|
|
])
|
|
|
|
run([sys.executable, "third_party/depot_tools/pylint.py"] +
|
|
find_exts(["tools", "build_extra"], [".py"], skip=["tools/clang"]))
|