forked from RasaHQ/rasa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
do not skip B303 globally, but locally
- Loading branch information
Showing
3 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# 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'] | ||
skips: ['B322', 'B104', 'B301'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters