We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97154b9 commit 8df7268Copy full SHA for 8df7268
.github/workflows/lints.yml
@@ -21,11 +21,10 @@ jobs:
21
run: |
22
python -m pip install --upgrade pip
23
python -m pip install bandit flake8 pylint
24
- python -m pip instal -r requirements.min.txt
25
continue-on-error: true
26
- name: Bandit syntax check
27
run: bandit ./bot.py cogs/*.py core/*.py -b .bandit_baseline.json
28
- name: Lint with pylint and flake8
29
30
- pylint ./bot.py cogs/*.py core/*.py --exit-zero -r y
31
- flake8 ./bot.py cogs/*.py core/*.py --ignore=E501,E203,W503 --exit-zero
+ pylint ./bot.py cogs/*.py core/*.py --disable=import-error --exit-zero -r y
+ flake8 ./bot.py cogs/*.py core/*.py --ignore=E501,E203,W503
0 commit comments