-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (34 loc) · 1.3 KB
/
setup.cfg
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
[flake8]
disable-noqa = True
max-line-length = 100
extend-ignore =
E203, # whitespace before : is not PEP8 compliant (& conflicts with black)
DAR003, # Incorrect indentation: ~<
DAR102, # Excess parameter(s) in Docstring: + words_freq[
DAR201, # Missing "Returns" in Docstring: - return
DAR202, # Excess "Returns" in Docstring: + return
per-file-ignores =
**/__init__.py:
# Missing docstring in public package
D104,
[flake8_nb]
disable-noqa = True
max-line-length = 100
extend-ignore =
E203, # whitespace before : is not PEP8 compliant (& conflicts with black)
D100, # Missing docstring in public module
E402, # module level import not at top of file
D103, # Missing docstring in public function
D104, # Missing docstring in public package
D400, # First line should end with a period
D403, # First word of the first line should be properly capitalized
DAR003, # Incorrect indentation: ~<
DAR102, # Excess parameter(s) in Docstring: + words_freq[
DAR201, # Missing "Returns" in Docstring: - return
DAR202, # Excess "Returns" in Docstring: + return
E231, # missing whitespace after ','
F401, # '...' imported but unused
F811, # redefinition of unused '..' from line 7
F821, # undefined name '...'
[darglint]
strictness=long