-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#10 - improve config and Python style
N816 actually highlighted a problem, not to be ignored. Rather than have config export variable that's not a constant, move that variable into a function for checking the rest of the config.
- Loading branch information
Showing
2 changed files
with
25 additions
and
14 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
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,6 +1,6 @@ | ||
[flake8] | ||
# Vive la résistance! Vive la mixedCase! | ||
# N802 function name '…' should be lowercase | ||
# N803 argument name '…' should be lowercase | ||
# N806 variable '…' in function should be lowercase | ||
# N816 variable '…' in global scope should not be mixedCase | ||
extend-ignore = N802,N803,N806,N816 | ||
extend-ignore = N802,N803,N806 |