-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
37 lines (37 loc) · 700 Bytes
/
.flake8
File metadata and controls
37 lines (37 loc) · 700 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
30
31
32
33
34
35
36
37
[flake8]
max-line-length = 120
extend-ignore =
E203,
W503,
E704,
E226,
W391,
W504
per-file-ignores =
*/__init__.py:F401
core/neuro/tests/test_ecs_regulator.py:E402
benchmarks/*.py:E402
cortex_service/tests/*.py:E402
tests/core/agent/test_pqf_pscs.py:E402
tests/scripts/test_calibrate_controllers.py:E402
tests/sdk/mlsdm/test_replay_harness.py:E402
docs/archive/*.py:E402
scripts/eval/*.py:E402
examples/*.py:E402
exclude =
.git,
__pycache__,
build,
dist,
.venv,
venv,
.mypy_cache,
.ruff_cache,
.pytest_cache,
docs,
sbom,
data,
reports,
nfpro/generated
select =
C,E,F,W,B,B950