forked from explorerhq/sql-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (42 loc) · 781 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
[coverage:run]
branch = True
parallel = True
omit =
explorer/__init__.py,
explorer/migrations/*,
explorer/tests/*,
test_project/*,
source =
explorer
[coverage:paths]
source =
explorer
.tox/*/site-packages
[coverage:report]
show_missing = True
[flake8]
max-line-length = 119
exclude =
*.egg-info,
.eggs,
.git,
.settings,
.tox,
.venv,
build,
data,
dist,
docs,
*migrations*,
requirements,
tmp
[isort]
line_length = 119
skip = manage.py, *migrations*, .tox, .eggs, data, .env, .venv
include_trailing_comma = true
multi_line_output = 5
lines_after_imports = 2
default_section = THIRDPARTY
sections = FUTURE, STDLIB, DJANGO, THIRDPARTY, FIRSTPARTY, LOCALFOLDER
known_first_party = explorer
known_django = django