-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
.flake8
43 lines (41 loc) · 814 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
# Flake8 Configuration
[flake8]
# Ignore some flake8-import-order errors
ignore =
# Import statements are in the wrong order.
I100,
# Imported names are in the wrong order.
I101,
# Missing newline between import groups.
I201,
# Additional newline in a group of imports.
I202,
# line break before binary operator
W503,
# line too long
E501,
# Missing docstring in __init__
D107,
# Whitespace before ':'
E203,
# Do not perform function calls in argument defaults.
B008,
exclude =
.tox,
.git,
.venv,
__pycache__,
docs/source/conf.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs
src/docapi,
tmp
max-complexity = 15
import-order-style = google
application-import-names = flake8
min_python_version = 3.12.3