forked from actinia-org/actinia-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
42 lines (39 loc) · 1.32 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
[flake8]
# E402 module level import not at top of file
# E501 line too long (104 > 88 characters)
# F401 '.health_check.health_check' imported but unused
# F821 undefined name 'QFile'
# W605 invalid escape sequence '\<'
max-line-length = 88
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, E501
./src/actinia_core/testsuite.py: F401
./src/actinia_core/rest/ephemeral_processing.py: W605
./src/actinia_core/processing/actinia_processing/ephemeral_processing.py: F401
./src/actinia_core/core/storage_interface_gcs.py: F401
./src/actinia_core/main.py: F401
./src/actinia_core/core/common/process_queue.py: F401
./src/actinia_core/models/process_chain.py: W605
./src/actinia_core/core/interim_results.py: W605
./src/actinia_core/core/list_grass_modules.py: F821
./src/actinia_core/core/common/aws_sentinel_interface.py: E501
./tests/*: E501, F401
# TODO: check imports again when actinia_processing is moved
./src/actinia_core/rest/raster_export.py: E501
./src/actinia_core/processing/actinia_processing/ephemeral_with_export/raster_export.py: E501