forked from wemake-services/wemake-django-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
34 lines (26 loc) · 725 Bytes
/
setup.cfg
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
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[flake8]
statistics = true
max-line-length = 80
ignore =
# Disable some pydocstyle checks:
*.py D100 D104 D106 D401
# Flake plugins:
inline-quotes = single
[tool:pytest]
isort_ignore =
{{cookiecutter.project_name}}/*.py
# py.test options:
console_output_style = classic
norecursedirs = {{cookiecutter.project_name}} *.egg .eggs dist build docs .tox .git __pycache__
addopts =
--cache-clear
--flake8
--isort
[isort]
multi_line_output = 3
include_trailing_comma = true
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
default_section = FIRSTPARTY