forked from django-json-api/django-rest-framework-json-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (47 loc) · 776 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
46
47
48
49
50
51
52
[aliases]
test = pytest
[wheel]
universal = 1
[flake8]
ignore = F405,W504
max-line-length = 100
exclude =
build,
docs/conf.py,
migrations,
.eggs
.tox,
env
.venv
[isort]
indent = 4
known_first_party = rest_framework_json_api
# This is to "trick" isort into putting example below DJA imports.
known_localfolder = example
known_standard_library = mock
line_length = 100
multi_line_output = 3
skip=
build,
docs/conf.py,
migrations,
.eggs
.tox,
env
.venv
[coverage:run]
source =
example
rest_framework_json_api
[coverage:report]
omit =
.tox/*
.eggs/*
example/urls.py
show_missing = True
exclude_lines =
pragma: no cover
pragma: todo cover
def __str__
def __unicode__
def __repr__