-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
32 lines (27 loc) · 775 Bytes
/
.flake8
File metadata and controls
32 lines (27 loc) · 775 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
[flake8]
# Set the max line length to 88, which matches black code formatter
# https://black.readthedocs.io/en/stable/
max-line-length = 88
exclude =
# No reason to check git´s directory
.git,
# No value in checking cache directories
__pycache__,
# The projects virtual environment named .venv
.venv,
# Documentation doesn't need to be tracked
docs
# extend-ignore =
verbose = 2
quiet = 0
format = pylint
max-complexity = 15
# We want to count the total number of errors flake8 finds during inspection
count = True
# Report all errors, even if it is on the same line as a # NOQA comment
disable-noqa = False
# Print the source code generating the error/warning in question
show-source = True
statistics = True
# Doctests
doctests = True