-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.flake8
More file actions
34 lines (33 loc) · 764 Bytes
/
.flake8
File metadata and controls
34 lines (33 loc) · 764 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
#########################
# Flake8 Configuration #
# (.flake8) #
# (formerly in tox.ini) #
#########################
[flake8]
ignore =
E501
I100 # Import statements are in the wrong order
I101 # Imported names are in the wrong order
F405 # Stars import
F403 # imports not used in init
F401 # imports not used in init
C901 # too complex methods
F841
I201
I202
exclude =
.tox,
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs
max-complexity = 10
import-order-style = pycharm
application-import-names = diffupy
format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s