Skip to content

Commit a22ac0b

Browse files
cclaussBridgeAR
cclauss
authored andcommitted
build: add '.git' to 'make lint-py' exclude list
When run locally [flake8](http://flake8.pycqa.org) was creating false positives by scanning the __.git__ directory. This PR prevents that behavior. PR-URL: #24802 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 706bc41 commit a22ac0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,7 @@ ifneq ("","$(wildcard tools/pip/site-packages)")
12861286
lint-py:
12871287
PYTHONPATH=tools/pip $(PYTHON) -m flake8 . \
12881288
--count --show-source --statistics --select=E901,E999,F821,F822,F823 \
1289-
--exclude=deps,lib,src,tools/*_macros.py,tools/gyp,tools/jinja2,tools/pip
1289+
--exclude=.git,deps,lib,src,tools/*_macros.py,tools/gyp,tools/jinja2,tools/pip
12901290
else
12911291
lint-py:
12921292
@echo "Python linting with flake8 is not avalible"

0 commit comments

Comments
 (0)