2018-10-14 02:10:43 +01:00
|
|
|
[flake8]
|
|
|
|
ignore = E203, W503
|
2018-10-18 05:20:16 +01:00
|
|
|
|
|
|
|
[isort]
|
2018-12-09 14:13:53 +00:00
|
|
|
atomic = true
|
2018-10-18 05:20:16 +01:00
|
|
|
default_section = THIRDPARTY
|
|
|
|
include_trailing_comma = true
|
|
|
|
known_first_party = sanic
|
|
|
|
known_third_party = pytest
|
|
|
|
line_length = 79
|
|
|
|
lines_after_imports = 2
|
|
|
|
lines_between_types = 1
|
|
|
|
multi_line_output = 3
|
|
|
|
not_skip = __init__.py
|
2018-12-09 14:13:53 +00:00
|
|
|
|
|
|
|
[version]
|
2019-12-27 13:10:46 +00:00
|
|
|
current_version = 19.12.0
|
2019-07-13 08:22:41 +01:00
|
|
|
files = sanic/__version__.py
|
2018-12-09 16:16:36 +00:00
|
|
|
current_version_pattern = __version__ = "{current_version}"
|
|
|
|
new_version_pattern = __version__ = "{new_version}"
|
2019-08-21 02:51:17 +01:00
|
|
|
|