-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.cfg
More file actions
29 lines (29 loc) · 930 Bytes
/
Copy pathsetup.cfg
File metadata and controls
29 lines (29 loc) · 930 Bytes
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
[flake8]
# Line length is not policed: this repo's comments carry a lot of explanation
# and reflowing them to 79 columns would make them harder to read, not easier.
max-line-length = 120
extend-ignore = E203, W503, E501
exclude =
.git,
.venv,
venv,
__pycache__,
node_modules,
build,
dist,
dash_flows,
.idea,
docs,
examples,
src,
per-file-ignores =
# run.py imports first-party modules AFTER load_dotenv() on purpose —
# several of them read os.environ at import time, so loading the .env
# afterwards would silently give every one of them its default. The
# satellite reporter import sits lower still, after the app is fully
# wired, because starting it earlier would report against a half-built
# page registry.
run.py: E402
# Fixtures are referenced by name, not by import, so pytest's arguments
# look unused to a linter.
tests/*: F811