refined-addition-53644
04/22/2022, 3:00 PM[bandit]
config = ".bandit.yml"
args = ["--quiet"]
lockfile = "build-support/bandit.txt"
[flake8]
config = ".flake8"
extra_requirements.add = [
"flake8-black==0.3.2",
"flake8-bandit==3.0.0",
"setuptools==62.1.0",
]
lockfile = "build-support/flake8.txt"
.bandit.yml
tests: ["B201", "B301", "S101"]
skips: ["B101", "B601", "B104"]
try_except_continue:
check_typed_exception: false
try_except_pass:
check_typed_exception: false
The issue seems to be because of flake8-bandit
plugin not able to read from this config file šbitter-ability-32190
04/22/2022, 3:30 PMflake8
refined-addition-53644
04/22/2022, 3:43 PMbitter-ability-32190
04/22/2022, 4:01 PMbandit
plugin. (And then upstream it š )refined-addition-53644
04/22/2022, 4:09 PMnarrow-vegetable-37489
04/22/2022, 11:49 PMflake8-bandit
when using Pants :)