-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
42 lines (37 loc) · 670 Bytes
/
setup.cfg
File metadata and controls
42 lines (37 loc) · 670 Bytes
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
# https://docs.python.org/3/distutils/configfile.html
[flake8]
# Base flake8 configuration:
# https://flake8.pycqa.org/en/latest/user/configuration.html
format = default
show-source = True
statistics = False
doctests = True
# darglint configuration:
# https://github.com/terrencepreilly/darglint
strictness = long
docstring-style = google
# Plugins:
max-complexity = 6
max-line-length = 89
# Disable some pydocstyle checks:
# Exclude some pydoctest checks globally:
ignore =
D100,
D104,
D106,
D401,
W504,
X100,
RST303,
RST304,
DAR103,
DAR203,
WPS306,
C901
# Excluding some directories:
exclude =
.git
__pycache__
.venv
.eggs
*.egg