-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path.flake8
More file actions
22 lines (22 loc) · 788 Bytes
/
.flake8
File metadata and controls
22 lines (22 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[flake8]
exclude =
.tox
build
dist
venv
per-file-ignores =
./iib/workers/tasks/build_regenerate_bundle.py: E713
./iib/workers/tasks/utils.py: E203,E702
./iib/workers/tasks/build_add_deprecations.py: E713
./iib/workers/tasks/opm_operations.py: E203
./iib/web/api_v1.py: E226
./iib/web/migrations/versions/*: D103
./tests/*: D103
./tests/test_web/test_models.py: D103
./tests/test_web/test_s3_utils.py: D103
./tests/test_web/test_api_v1.py: D103
./tests/test_workers/test_tasks/test_build.py: D103,E231
./tests/test_workers/test_tasks/test_build_regenerate_bundle.py: D103,E241,E222
./tests/test_workers/test_tasks/test_opm_operations.py: D103, E203
./tests/test_web/test_migrations.py: E231,D103
extend-ignore = E231