forked from City-of-Helsinki/smbackend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
39 lines (34 loc) · 804 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
35
36
37
38
39
[pep8]
max-line-length = 120
exclude = *migrations*
[flake8]
exclude = .git,
*migrations*,
venv,
services/models/__init__.py,
services/utils/__init__.py,
smbackend/settings_test.py,
local_settings.py,
max-line-length = 120
ignore = E203,W503,N813
[tool:pytest]
DJANGO_SETTINGS_MODULE=smbackend.settings_test
python_files = tests.py test_*.py *_tests.py
addopts = --hypothesis-show-statistics -rs
[coverage:run]
branch = True
omit = *migrations*,*site-packages*,*venv*
[isort]
atomic = true
combine_as_imports = true
indent = 4
length_sort = false
multi_line_output = 3
order_by_type = false
skip = venv
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = True
line_length = 88
[pydocstyle]
ignore = D100,D104,D105,D200,D203,D400