diff options
author | Simon Glass <sjg@chromium.org> | 2021-11-21 20:48:40 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-24 17:36:15 -0500 |
commit | feafc61ea66c1f1f36aadda7d36a63814f086a4e (patch) | |
tree | 92cbc7531fa462dfd710c361c8b5421f4e7ef334 /.gitignore | |
parent | c761cf778fc6fe309f4be20a9e157165bc3b4841 (diff) | |
download | u-boot-feafc61ea66c1f1f36aadda7d36a63814f086a4e.tar.gz |
Makefile: Add a pylint checker to the build
At present the Python code in U-Boot is somewhat inconsistent, with some
files passing pylint quite cleanly and others not.
Add a way to track progress on this clean-up, by checking that no module
has got any worse as a result of changes.
This can be used with 'make pylint'.
Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: Re-generate pylint.base]
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 35034de6556..28c439f09fd 100644 --- a/.gitignore +++ b/.gitignore @@ -98,3 +98,7 @@ __pycache__ # Python code coverage output (python3-coverage html) /htmlcov/ + +# pylint files +/pylint.cur +/pylint.out/ |