-
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.
- Loading branch information
1 parent
9f59100
commit 5af0fff
Showing
2 changed files
with
17 additions
and
1 deletion.
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,4 +1,19 @@ | ||
[flake8] | ||
; FIXME This is temporary, except for W503 which conflicts with black | ||
ignore = D100,D101,D102,D103,D104,D105,D107,D205,D400,D401,I101,I201,W503,ANN101 | ||
; ANN101: Missing type annotation for self in method | ||
; D100 : Missing docstring in public module | ||
; D101 : Missing docstring in public class | ||
; D102 : Missing docstring in public method | ||
; D103 : Missing docstring in public function | ||
; D104 : Missing docstring in public package | ||
; D105 : Missing docstring in magic method | ||
; D107 : Missing docstring in __init__ | ||
; D205 : 1 blank line required between summary line and description | ||
; D400 : First line should end with a period | ||
; D401 : First line should be in imperative mood | ||
; I101 : Imported names are in the wrong order | ||
; I201 : Missing newline between import groups | ||
; W503 : Line break occurred before a binary operator | ||
|
||
[easy_install] |