forked from actinia-org/actinia-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
46 lines (43 loc) · 1.62 KB
/
.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
44
45
46
[flake8]
# E402 module level import not at top of file
# E501 line too long (80 > 79 characters)
# F401 '.health_check.health_check' imported but unused
# F811 redefinition of unused 'verify_password' from line 55
# F821 undefined name 'QFile'
# W605 invalid escape sequence '\<'
exclude =
.git,
__pycache__,
build,
.env,
.eggs,
.venv,
env,
venv,
ENV,
env.bak,
venv.bak,
ctypes,
pydispatch,
testsuite,
per-file-ignores =
./src/actinia_core/core/common/api_logger.py: F401
./src/actinia_core/core/common/app.py: E402
./src/actinia_core/core/common/config.py: E501
./src/actinia_core/core/common/process_queue.py: F401
./src/actinia_core/core/interim_results.py: W605
./src/actinia_core/core/list_grass_modules.py: F821
./src/actinia_core/testsuite.py: F401
./src/actinia_core/rest/base/user_auth.py: F811
./src/actinia_core/rest/ephemeral_processing.py: W605
./src/actinia_core/processing/actinia_processing/ephemeral_renderer_base/*: E501
./src/actinia_core/processing/actinia_processing/ephemeral_with_export/raster_export.py: E501
./src/actinia_core/processing/actinia_processing/persistent/*: E501
./src/actinia_core/processing/actinia_processing/ephemeral_processing.py: F401, E501
./src/actinia_core/rest/process_chain_monitoring.py: E501
./src/actinia_core/main.py: F401
./src/actinia_core/models/process_chain.py: W605
./tests/test_async_processing_import_export.py: F401
./tests/test_resource_base.py: F401
# TODO: check imports again when actinia_processing is moved
./src/actinia_core/rest/raster_export.py: E501