-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
19 lines (18 loc) · 856 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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]