forked from CardiacModelling/ap-nimbus-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
30 lines (28 loc) · 778 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
[flake8]
max_line_length = 120
ignore =
# allow empty line at end of file
W391
# break before binary operator - allow either style
W503
# break after binary operator - allow either style
W504
exclude =
**/migrations/* # Auto-generated code
**/node_modules/* # Third-party dependencies
[isort]
line_length = 100
multi_line_output = 3
# ^ Vertical Hanging Indent
force_grid_wrap = 4
# ^ Don't allow more than 3 imports on a single line
lines_after_imports = 2
order_by_type = True
include_trailing_comma = True
force_single_line = False
default_section = FIRSTPARTY
known_first_party = client
skip =
migrations, # Auto-generated code
node_modules, # Third-party dependencies
secrets.py, # Don't reveal secrets by accident!