python: lint workflow fix

This commit is contained in:
sshakndr
2023-10-25 12:48:34 +07:00
parent b7212b035a
commit c23a8ac47d

View File

@ -32,9 +32,9 @@ jobs:
- name: Lint Flake8
run: |
flake8 ./**/*.py --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 ./**/*.py --count --max-complexity=10 --max-line-length=79 --statistics
flake8 --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 --count --max-complexity=15 --max-line-length=120 --per-file-ignores="__init__.py:F4" --statistics
- name: Lint Pylint
run: |
pylint ./**/*.py
pylint ./**/*.py --rcfile=.pylintrc