forked from divio/aldryn-translation-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (42 loc) · 898 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
40
41
42
43
44
45
[flake8]
ignore = E251,E128
max-line-length = 120
exclude =
.git,
__pycache__,
*migrations*,
build/,
.eggs/,
.tox/,
[isort]
line_length = 99
lines_after_imports = 2
skip = manage.py, migrations, data, .tox, .eggs
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
multi_line_output = 5
not_skip = __init__.py
known_first_party = aldryn_translation_tools
known_django = django
known_cms = cms
sections = FUTURE, STDLIB, DJANGO, CMS, THIRDPARTY, FIRSTPARTY, LIB, LOCALFOLDER
[coverage:run]
branch = True
source = aldryn_translation_tools
omit =
*apps.py,
*constants.py,
*migrations/*,
*test_utils/*,
*tests/*,
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.: