Update lint.py

This commit is contained in:
zandercymatics 2024-01-18 09:13:05 -07:00
parent 19835f47d5
commit 126a700bd9
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -26,14 +26,14 @@ class Command(BaseCommand):
"purpose": "Linting", "purpose": "Linting",
"args": ["flake8", ".", "--count", "--show-source", "--statistics"], "args": ["flake8", ".", "--count", "--show-source", "--statistics"],
}, },
"mypy": {
"purpose": "Type checking",
"args": ["mypy", "."],
},
"black": { "black": {
"purpose": "Formatting", "purpose": "Formatting",
"args": ["black", "--check", "."], "args": ["black", "--check", "."],
}, },
"mypy": {
"purpose": "Type checking",
"args": ["mypy", "."],
},
"bandit": { "bandit": {
"purpose": "Security scanning", "purpose": "Security scanning",
"args": ["bandit", "-r", "."], "args": ["bandit", "-r", "."],