forked from Pincer-org/Pincer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
39 lines (39 loc) · 1.05 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
[flake8]
max-line-length = 80
ignore =
D203,
# H101: Use TODO(NAME)
# H501: Do not use self.__dict__ for string formatting
H501,
# F403 Unable to detect undefined names
F403,
# F401 __init__ causes verbose output
F401,
# C901 Too complex, well no way getting over that
C901,
# W503: line break before binary operator
W503
exclude =
# No need to traverse our git directory
.git,
# No need to traverse our pycharm conf
.idea,
# There's no value in checking cache directories
__pycache__,
# The docs/conf file is mostly autogenerated, ignore it
docs,
# This contains our built documentation
build,
# This contains test code that we don't want to check
dev,
# This contains builds that we don't want to check
dist,
# This is our python environment
venv,
# This is used by some editors for file history
.history,
# This is config for github
.github,
# Tuples are not annotations, flake8 says this, vscode says this
examples
max-complexity = 10