forked from City-of-Helsinki/django-ilmoitin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (31 loc) · 775 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
[pep8]
max-line-length = 88
exclude = *migrations*
ignore = E309
[flake8]
exclude = .git, build, dist, django_ilmoitin/migrations
max-line-length = 120
[tool:pytest]
pythonpath = .
DJANGO_SETTINGS_MODULE = tests.settings
norecursedirs = bower_components node_modules .git .idea test_app
doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ALLOW_UNICODE
testpaths = tests
[coverage:run]
branch = True
omit = *migrations*,*site-packages*,*venv*,*tests*
[isort]
known_first_party=django_ilmoitin
default_section = THIRDPARTY
atomic=true
combine_as_imports=false
indent=4
length_sort=false
multi_line_output=3
not_skip=__init__.py
order_by_type=false
skip=migrations,venv
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length=88