-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8
52 lines (52 loc) · 844 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[flake8]
count = True
exclude =
*.pyc,
*.egg,
.bzr,
.eggs,
.git,
.github,
.hatch,
.hg,
.nox,
.svn,
.tox,
.venv,
__pycache__,
CVS,
docs/source/conf.py,
build,
dist,
htmlcov,
old
filename = *.py
ignore = D100,D103,D104,D105,D202,D412,E121,E123,E126,E203,E226,E24,E704,Q000,W503,W504
per-file-ignores =
# imported but unused
__init__.py: F401
__about__.py: F401
setup.py:E121
test_*.py: D102
max-line-length = 120
max-doc-length = 120
indent-size = 4
show-source = True
extend-immutable-calls =
pathlib.Path,
Path
docstring-convention = google
jobs = 8
tee = True
builtins =
_,
_LE,
_LW
doctests = True
max-complexity = 15
require-plugins =
mccabe,
pyflakes,
pycodestyle,
flake8-builtins,
flake8-comprehensions