-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
24 lines (21 loc) · 677 Bytes
/
setup.cfg
File metadata and controls
24 lines (21 loc) · 677 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
[flake8]
# Verifies PEP8 (coding style), pyflakes (finds programming errors)
# and circular complexity (number of paths in the program).
exclude =
# No need to traverse our git directory
.git,
# There is no value in checking cache directories
__pycache__,
# Skip the virtual environment directory
# Note: change the name of the following directory ("venv") with the
# name of your virtual environment (if it is placed inside the project)
venv
[mypy]
# Static type checker for Python
[mypy-requests]
ignore_missing_imports=True
[isort]
# Sorts import automatically
# Black is uncompromising Python code formatter.
profile=black
line_length=79