2018-07-08 13:56:03 +08:00
|
|
|
#!/usr/bin/env python
|
2019-01-22 04:03:30 +09:00
|
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-07-08 13:56:03 +08:00
|
|
|
# Does google-lint on c++ files and ts-lint on typescript files
|
|
|
|
|
|
|
|
import os
|
2018-11-30 03:27:41 -05:00
|
|
|
import sys
|
2019-01-25 00:54:43 +09:00
|
|
|
from util import enable_ansi_colors, find_exts, root_path, run
|
2018-09-02 23:37:14 +02:00
|
|
|
|
|
|
|
enable_ansi_colors()
|
2018-07-08 13:56:03 +08:00
|
|
|
|
|
|
|
third_party_path = os.path.join(root_path, "third_party")
|
|
|
|
cpplint = os.path.join(third_party_path, "cpplint", "cpplint.py")
|
2019-03-10 04:30:38 +11:00
|
|
|
eslint = os.path.join(third_party_path, "node_modules", "eslint", "bin",
|
|
|
|
"eslint")
|
2018-07-08 13:56:03 +08:00
|
|
|
|
2018-07-08 02:24:29 -04:00
|
|
|
os.chdir(root_path)
|
|
|
|
run([
|
2019-02-12 02:57:26 +09:00
|
|
|
"python", cpplint, "--filter=-build/include_subdir",
|
2019-03-30 14:45:36 -04:00
|
|
|
"--repository=core/libdeno", "--extensions=cc,h", "--recursive", "core"
|
2018-07-08 02:24:29 -04:00
|
|
|
])
|
2018-10-05 07:29:55 -04:00
|
|
|
|
2018-10-05 10:20:10 -04:00
|
|
|
run([
|
2019-03-10 04:30:38 +11:00
|
|
|
"node", eslint, "./js/**/*.{ts,js}", "./core/**/*.{ts,js}",
|
|
|
|
"./tests/**/*.{ts,js}"
|
2018-10-05 10:20:10 -04:00
|
|
|
])
|
2018-11-30 03:27:41 -05:00
|
|
|
|
|
|
|
run([sys.executable, "third_party/depot_tools/pylint.py"] +
|
|
|
|
find_exts(["tools", "build_extra"], [".py"], skip=["tools/clang"]))
|