forked from swapper-org/NodeChain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
30 lines (30 loc) · 840 Bytes
/
.flake8
File metadata and controls
30 lines (30 loc) · 840 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
[flake8]
ignore =
# F405: name may be undefined, or defined from star imports: module
F405,
# E501: line too long (82 > 79 characters)
E501,
# F401: module imported but unused
F401,
# F403: ‘from module import *’ used; unable to detect undefined names
F403,
# W504: line break after binary operator
W504
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
# This contains virtual environments
venv*,
# This contains dockers
packages,
docker-compose,
Connector/tests/docker-compose,
# This contains nginx configuration files
nginx,
max-complexity = 11