-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80ca5bb
commit 854f386
Showing
48 changed files
with
857 additions
and
551 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,10 +1,11 @@ | ||
[flake8] | ||
; Disabling the checks that conflict with "black": | ||
; Disabling the checks that overlap with "black" and "pylint" tools: | ||
; E122 "continuation line missing indentation or outdented" | ||
; E126 "continuation line over-indented for hanging indent" | ||
; E131 "continuation line unaligned for hanging indent" | ||
; E203 "whitespace before ':'" | ||
; E402 "module level import not at top of file" | ||
; E501 "line too long (129 > 120 characters)" | ||
; W503 "line break before binary operator" | ||
select = E,F,W,C,S | ||
ignore = E122,E126,E131,E203,E501,W503 | ||
ignore = E122,E126,E131,E203,E402,E501,W503 |
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
Oops, something went wrong.