diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-29 21:31:59 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-30 15:53:23 -0500 |
commit | 06c0e291182f20f207e4c914ae78d3f9ec16e074 (patch) | |
tree | 4bb41b0b0efead893d07e113d0b05ee23b738091 /tools/lint.py | |
parent | 13582ff3f2478f2e2cafa3042fc6aa96ae5049c5 (diff) |
Fix cpplint
Diffstat (limited to 'tools/lint.py')
-rwxr-xr-x | tools/lint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lint.py b/tools/lint.py index 4c38d3c69..1e22703b5 100755 --- a/tools/lint.py +++ b/tools/lint.py @@ -15,8 +15,8 @@ tslint = os.path.join(third_party_path, "node_modules", "tslint", "bin", os.chdir(root_path) run([ - "python", cpplint, "--filter=-build/include_subdir", "--repository=src", - "--extensions=cc,h", "--recursive", "src/." + "python", cpplint, "--filter=-build/include_subdir", "--repository=libdeno", + "--extensions=cc,h", "--recursive", "libdeno" ]) run(["node", tslint, "-p", ".", "--exclude", "**/gen/**/*.ts"]) |