Skip to content

Commit

Permalink
add comments for skipped checks
Browse files Browse the repository at this point in the history
  • Loading branch information
m-vdb committed Dec 9, 2020
1 parent e5e196d commit 69a0a3a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bandit.yml
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# B322: checks for `input()` which is unsafe in Python 2, but safe in Python 3.
# B104: checks for binding 0.0.0.0 interface, which should be fine for containers.
# B301: checks for pickle usage, which is a necessary evil.
# B303: checks for insecure hash functions like md5, which is good enough for current use cases.
skips: ['B322', 'B104', 'B301', 'B303']

0 comments on commit 69a0a3a

Please sign in to comment.