diff options
author | Ry Dahl <ry@tinyclouds.org> | 2019-10-31 22:33:27 -0400 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-10-31 19:33:27 -0700 |
commit | af61dbed874863db308f3a421ad142a7f106687a (patch) | |
tree | 083946a0071ddf4ddde51df54064ce8b56d1e812 /tools/lint.py | |
parent | 9d6cbb73a8dcf63b24630129f47dc98d3cc735d5 (diff) |
Upgrade node_modules, change tagline, clean up root directory (#3247)
* Upgrade node_modules
* Simplify tagline
* Move gclient_config.py out of root
* Move package.json to tools
* Remove yarn.lock
* Remove CONTRIBUTING.md
Diffstat (limited to 'tools/lint.py')
-rwxr-xr-x | tools/lint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lint.py b/tools/lint.py index ad6498541..beb1a180c 100755 --- a/tools/lint.py +++ b/tools/lint.py @@ -55,7 +55,7 @@ def pylint(): print "pylint" script = os.path.join(third_party_path, "python_packages", "pylint") rcfile = os.path.join(third_party_path, "depot_tools", "pylintrc") - source_files = git_ls_files(root_path, ["*.py", ":!:gclient_config.py"]) + source_files = git_ls_files(root_path, ["*.py"]) run([sys.executable, script, "--rcfile=" + rcfile, "--"] + source_files, env=python_env(), shell=False, |