This commit is contained in:
parent
7b66dfb351
commit
6ab583af33
2 changed files with 2 additions and 2 deletions
2
.github/workflows/pylint.yml
vendored
2
.github/workflows/pylint.yml
vendored
|
@ -20,4 +20,4 @@ jobs:
|
|||
pip install pylint
|
||||
- name: Analysing the code with pylint
|
||||
run: |
|
||||
pylint $(git ls-files '*.py')
|
||||
pylint --disable=E0401 $(git ls-files '*.py')
|
||||
|
|
|
@ -7,4 +7,4 @@ pipeline:
|
|||
pylint:
|
||||
image: cytopia/pylint
|
||||
commands:
|
||||
- find . -type f -name "*.py" | xargs pylint
|
||||
- find . -type f -name "*.py" | xargs pylint --disable=E0401
|
||||
|
|
Loading…
Reference in a new issue