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 aaa3b44 commit 06736c5Copy full SHA for 06736c5
pants.toml
@@ -12,6 +12,7 @@ backend_packages = [
12
"pants.backend.python",
13
"pants.backend.experimental.python", # activates twine `publish` support
14
"pants.backend.python.mixed_interpreter_constraints",
15
+ "pants.backend.python.lint.bandit",
16
"pants.backend.python.lint.black",
17
"pants.backend.python.lint.flake8",
18
@@ -83,6 +84,15 @@ root_patterns = [
83
84
"/st2common/benchmarks/micro",
85
]
86
87
+[bandit]
88
+version = "bandit==1.7.0"
89
+args = [
90
+ "-lll", # only HIGH severity level
91
+ "--exclude",
92
+ "build,dist",
93
+ "--quiet", # only show output in the case of an error
94
+]
95
+
96
[black]
97
lockfile = "lockfiles/black.lock"
98
version = "black==22.3.0"
0 commit comments