tox: add bandit security linter
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Anna “CyberTailor” 2024-04-27 04:34:26 +05:00
parent a8fc3eee2c
commit 958fa9f8cf
Signed by: CyberTaIlor
GPG Key ID: E7B76EDC50864BB1
1 changed files with 4 additions and 2 deletions

View File

@ -23,13 +23,15 @@ commands =
description = run the linters
skip_install = true
deps =
bandit
pycodestyle
pyflakes
reuse
commands =
reuse lint
pyflakes {posargs:find_work}
pycodestyle {posargs:find_work}
pyflakes {posargs:find_work tests}
pycodestyle {posargs:find_work tests}
bandit -r {posargs:find_work}
[pycodestyle]
max-line-length = 100