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 028abfc commit 97154b9Copy full SHA for 97154b9
.github/workflows/lints.yml
@@ -21,10 +21,11 @@ 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
- python .lint.py
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
0 commit comments