Add ignore linter.

This commit is contained in:
hodanov 2023-12-01 00:29:04 +09:00
parent ff8e0e2714
commit 22d29b1adc

View File

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