-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
32 lines (31 loc) · 836 Bytes
/
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
[darglint]
strictness=short
[flake8]
max-line-length = 88
max-complexity = 10
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
# No need to traverse our nox directory
.nox,
# No need to traverse out noxfile.py
noxfile.py,
ignore =
# D100 Missing docstring in public module
D100,
# D104 Missing docstring in public package
D104,
# D203: Whitespace before ':'
D203,
per-file-ignores =
docs/conf.py,tests/*:D100,D101,D102,D103,ANN001,ANN201,S101