-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bandit
47 lines (36 loc) · 1.11 KB
/
.bandit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[bandit]
# This is a sample Bandit user configuration file.
# You can customize Bandit's behavior by modifying these settings.
# Severity levels to report (comma-separated). Valid values: LOW, MEDIUM, HIGH
# Default: HIGH
# severity: HIGH
# Confidence levels to report (comma-separated). Valid values: LOW, MEDIUM, HIGH
# Default: HIGH
# confidence: HIGH
# List of plugins to enable (comma-separated). Use 'bandit -ll' to list available plugins.
# Default: all plugins enabled
# plugins:
# Excludes paths from scan (comma-separated). Accepts globs.
# Default: None
# exclude:
# List of test IDs to skip (comma-separated).
# Default: None
skips = B101
# Allow bandit to use eval.
# Default: False
# allow_eval: False
# Allow bandit to use exec.
# Default: False
# allow_exec: False
# Allow bandit to use xml.etree.ElementTree.parse.
# Default: False
# allow_xml_etree: False
# Allow bandit to use cPickle.
# Default: False
# allow_pickle: False
# Allow bandit to use string-based exceptions.
# Default: False
# allow_expressions: False
# Allow bandit to use shell-based subprocess calls.
# Default: False
# allow_shell: False