-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
46 lines (46 loc) · 926 Bytes
/
.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]
max-complexity = 20
max-line-length = 120
ignore =
# E121,
# E123,
# E126,
# Whitespace before :
E203,
# E221,
# Whitespace around operators
E226,
# E228,
# Missing whitespace after ,
E231,
# E24,
# E251,
# 2 spaces before inline comment
E261,
# Comments should start with #
E262,
# Block comment should start with #
E265,
# E27,
# Expected 2 lines between funcs/classes
E302,
# E501,
# E701,
# E704,
# H233,
# Blank line and the EOF
W391,
# W503,
# W504,
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
build,
# This contains builds of flake8 that we don't want to check
dist
per-file-ignores =
# imported but unused
__init__.py: F401