0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-22 02:18:39 +01:00
wagtail/setup.cfg
Karl Hobley c83a8a0a67 Fix import sorting in project_template
In a rendered project, the "search" import is local but it was being
treated as third party by isort.
2017-05-26 13:03:41 +01:00

20 lines
365 B
INI

[bdist_wheel]
universal = 1
[flake8]
ignore = E501,E303
exclude = wagtail/project_template/*
max-line-length = 120
[isort]
line_length=100
multi_line_output=4
skip=migrations,project_template
add_imports=from __future__ import absolute_import,from __future__ import unicode_literals
[pytest]
django_find_project = false
python_files=test_*.py
testpaths=wagtail