-
Notifications
You must be signed in to change notification settings - Fork 172
/
.flake8
27 lines (27 loc) · 873 Bytes
/
.flake8
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
[flake8]
select = C,E,F,W,B,D,B950
ignore = E203,E501,W503,D203,D102,D103,D107,D400
# E203,E501,W503: per recommendation from black
# D203: Not compatible with pep257
# D102,D103: Hopefully remove someday, too many public functions to document for now
# D107: __init__ docstring is redundant, already require class docstring
# D400: Period at end of every docstring, maybe change some day, not high priority
max-line-length = 88
# max-complexity = 20
no-isort-config = true
use-varnames-strict-mode = true
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/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,
# The tox directory
.tox