-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
81 lines (71 loc) · 1.98 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Configs for plugins
[pycodestyle]
count = False
ignore = E226,E302,E41,D100,D203,D405
match = *.py
max-line-length =119
exclude = build_pipeline/*,migrations/*
inherit = false
statistics = True
# -----------------------------------------------------------------------------
# autopep8
# https://pep8.readthedocs.io/en/latest/intro.html#configuration
# -----------------------------------------------------------------------------
[autopep8]
exclude = build_pipeline/*,migrations/*
ignore = E126,
max-line-length = 119
aggressive = 0
# -----------------------------------------------------------------------------
# Flake 8
# https://flake8.readthedocs.io/en/latest/user/configuration.html
# -----------------------------------------------------------------------------
[flake8]
ignore = D203
max-line-length = 119
exclude =
.tox,
.toxenv,
.git,
.editorconfig,
build_pipeline,
env,
migrations,
tests,
utility_scripts,
*.pyc,
*.egg-info,
.cache,
.eggs
max-complexity = 10
output-file = reports/flake8.log
tee = True
[tool:pytest]
python_files = tests.py test_*.py *_tests.py
ignore = build_pipeline/ env/ static/ media/ logs/
[bandit]
exclude: tests/*
[aliases]
test=pytest
# -----------------------------------------------------------------------------
# isort
# https://github.com/timothycrosley/isort/wiki/isort-Settings
# -----------------------------------------------------------------------------
[isort]
from_first = true
indent = ' '
known_third_party = six,pytest,autopep8,yapf,pylint
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
line_length=120
multi_line_output=0
lines_after_imports=2
skip_glob=20??????????_*_*.py,migrations
not_skip=__init__.py
# -----------------------------------------------------------------------------
# YAPF
# https://github.com/google/yapf#formatting-style
# -----------------------------------------------------------------------------
[yapf]
based_on_style = pep8
spaces_before_comment = 2
column_limit = 119