-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy path.flake8
More file actions
26 lines (26 loc) · 655 Bytes
/
.flake8
File metadata and controls
26 lines (26 loc) · 655 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
[flake8]
ignore =
D203,
E203, # Whitespace before ':'. Conflicts with 'Black'
E226,
E402,
E501,
F401,
F841,
W293,
W391,
W503,
C901 # "function is too complex"
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# ml_tools is external code
python/mmSolver/tools/mltools/ml_convertRotationOrder.py,
python/mmSolver/tools/mltools/ml_utilities.py,
# Do not check generated Python files from .ui files.
ui_*.py,
max-complexity = 10