mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-17 06:54:21 -05:00
Move isort config to pyproject.toml
(#12052)
This commit is contained in:
parent
d7cb0dcbaa
commit
1ae492c8c0
1
changelog.d/12052.misc
Normal file
1
changelog.d/12052.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Move `isort` configuration to `pyproject.toml`.
|
@ -54,3 +54,15 @@ exclude = '''
|
|||||||
)/
|
)/
|
||||||
)
|
)
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
[tool.isort]
|
||||||
|
line_length = 88
|
||||||
|
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "TWISTED", "FIRSTPARTY", "TESTS", "LOCALFOLDER"]
|
||||||
|
default_section = "THIRDPARTY"
|
||||||
|
known_first_party = ["synapse"]
|
||||||
|
known_tests = ["tests"]
|
||||||
|
known_twisted = ["twisted", "OpenSSL"]
|
||||||
|
multi_line_output = 3
|
||||||
|
include_trailing_comma = true
|
||||||
|
combine_as_imports = true
|
||||||
|
|
||||||
|
11
setup.cfg
11
setup.cfg
@ -19,14 +19,3 @@ ignore =
|
|||||||
# E731: do not assign a lambda expression, use a def
|
# E731: do not assign a lambda expression, use a def
|
||||||
# E501: Line too long (black enforces this for us)
|
# E501: Line too long (black enforces this for us)
|
||||||
ignore=W503,W504,E203,E731,E501
|
ignore=W503,W504,E203,E731,E501
|
||||||
|
|
||||||
[isort]
|
|
||||||
line_length = 88
|
|
||||||
sections=FUTURE,STDLIB,THIRDPARTY,TWISTED,FIRSTPARTY,TESTS,LOCALFOLDER
|
|
||||||
default_section=THIRDPARTY
|
|
||||||
known_first_party = synapse
|
|
||||||
known_tests=tests
|
|
||||||
known_twisted=twisted,OpenSSL
|
|
||||||
multi_line_output=3
|
|
||||||
include_trailing_comma=true
|
|
||||||
combine_as_imports=true
|
|
||||||
|
2
tox.ini
2
tox.ini
@ -166,7 +166,7 @@ commands =
|
|||||||
|
|
||||||
[testenv:check_isort]
|
[testenv:check_isort]
|
||||||
extras = lint
|
extras = lint
|
||||||
commands = isort -c --df --sp setup.cfg {[base]lint_targets}
|
commands = isort -c --df {[base]lint_targets}
|
||||||
|
|
||||||
[testenv:check-newsfragment]
|
[testenv:check-newsfragment]
|
||||||
skip_install = true
|
skip_install = true
|
||||||
|
Loading…
Reference in New Issue
Block a user