Skip to content

Commit e44f6f4

Browse files
author
rpobotin
committed
Update pylint configuration to use the correct command and ignore virtual environment
1 parent fbe6a83 commit e44f6f4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ jobs:
1919
pip install -r requirements.txt
2020
- name: Test with pylint
2121
run: |
22-
pylint-fail-under *.py **/*.py --fail_under 9.8
22+
pylint *.py **/*.py --fail-under 9.8
2323

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ max-line-length=120
55
disable=C0114,C0115,C0116,W0603
66

77
[MASTER]
8-
init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()))"
8+
ignore=venv

0 commit comments

Comments
 (0)