Skip to content

Commit

Permalink
Merge pull request #113 from Okabe-Junya/junya/fix/pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
zkoppert authored Sep 11, 2023
2 parents e89f347 + 89e7aa1 commit 8889037
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
[MAIN]
ignore=.git,
__pycache__,
venv,
.venv,


[MESSAGES CONTROL]
disable=
redefined-argument-from-local,
Expand All @@ -6,4 +13,4 @@ disable=
duplicate-code,
too-many-locals,
too-many-branches,
line-too-long,
line-too-long,
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clean:
.PHONY: lint
lint:
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude=venv,.venv,.git,__pycache__
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=15 --max-line-length=127 --statistics
pylint --rcfile=.pylintrc --fail-under=9.0 *.py
flake8 . --count --exit-zero --max-complexity=15 --max-line-length=127 --statistics --exclude=venv,.venv,.git,__pycache__
pylint --rcfile=.pylintrc --fail-under=9.0 *.py

0 comments on commit 8889037

Please sign in to comment.