-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.cfg
46 lines (43 loc) · 1.19 KB
/
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
[flake8]
max-line-length = 119
ignore = E123, E126, E226, E241, E731, W503, W605
per-file-ignores =
*/migrations/*: E501
pasportaservo/settings/base.py: E302, E305
pasportaservo/settings/local_settings.py: F403, F405
pasportaservo/settings/dev.py: F403, F405
pasportaservo/settings/testing.py: F401, F403
pasportaservo/settings/staging.py: F403, F405
pasportaservo/settings/prod.py: F403, F405
hosting/countries.py: E501
hosting/views.py: F405
hosting/validators.py: E305
tests/views/pages/__init__.py: F401
[isort]
default_section = THIRDPARTY
line_length = 79
multi_line_output = 5
balanced_wrapping = true
include_trailing_comma = true
order_by_type = true
combine_as_imports = true
skip_glob = **/migrations/**
skip = pasportaservo/wsgi.py
known_django = django
known_first_party = pasportaservo, core, hosting, links, blog, maps
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[coverage:run]
command_line = ./manage.py test --keepdb
source = .
branch = True
omit =
*/settings/*
*/migrations/*
manage.py
fabfile.py
pasportaservo/wsgi.py
pasportaservo/debug.py
*/tests/*
[coverage:report]
exclude_also =
if TYPE_CHECKING: