removed pylint

This commit is contained in:
sshakndr
2023-10-30 16:15:57 +07:00
parent 0a3785a3a4
commit c78814ced4
2 changed files with 1 additions and 39 deletions

View File

@ -27,14 +27,10 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8
pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint Flake8
run: |
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 --rcfile=.pylintrc --disable=import-error