Add ignore linter.

This commit is contained in:
hodanov 2023-12-01 00:53:27 +09:00
parent 4dfb9d1e22
commit 455a7dfcaa

View File

@ -20,5 +20,5 @@ jobs:
pip install pycodestyle pyflakes
- name: Analysing the code with pycodestyle
run: |
pycodestyle --first --ignore=E501,F401 $(git ls-files '*.py')
pycodestyle --first --ignore=F401,E501 $(git ls-files '*.py')
pyflakes $(git ls-files '*.py')