-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
48 lines (46 loc) · 1.1 KB
/
setup.cfg
File metadata and controls
48 lines (46 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# NOTE:
# * http://www.pydocstyle.org/en/latest/error_codes.html
# * https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
[pydocstyle]
#
# ```
# 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
# D106: Missing docstring in public nested class
# D107: Missing docstring in __init__
# D203: 1 blank line required begore class docstring
# D213: Multi-line docstring summary should start at the second line
# D401: First line should be in imperative mood; try rephrasing
# ```
ignore =
D100,
D101,
D102,
D103,
D104,
D105,
D106,
D107,
D203,
D213,
D401
match_dir =
rapperswil_jona
test
[pycodestyle]
#
# ```
# E402: module level import not at top of file
# F403: 'from module import *' used; unable to detect undefined names
# F405: name may be undefined, or defined from star imports: module
# W504: line break after binary operator
# ```
ignore =
E402,
F403,
F405,
W504