forked from samluescher/django-form-designer
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
36 lines (32 loc) · 792 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
[bdist_wheel]
universal = 1
[pep8]
max-line-length = 120
exclude = *migrations*
ignore = E309
[flake8]
exclude = migrations,node_modules,.tox
max-line-length = 120
max-complexity = 10
[isort]
profile=black
atomic=true
combine_as_imports=false
indent=4
known_standard_library=token,tokenize,enum,importlib
known_third_party=django
length_sort=false
line_length=120
multi_line_output=3
not_skip=__init__.py
order_by_type=false
skip=migrations,.tox
wrap_length=120
[tool:pytest]
DJANGO_SETTINGS_MODULE = dfd_tests.settings
norecursedirs = bower_components node_modules .git venv*
doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ALLOW_UNICODE
filterwarnings =
once::DeprecationWarning
once::PendingDeprecationWarning
ignore:.+PickledObjectField.from_db_value.+