mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
3d6a1d3764
Since isort 5.11.0 if a import statement ends with a trailing comma it's excluded for sorting, which makes the black-formatted import lines unformatted by isort. Disable this behavior in the config so all import lines are sorted as they should.
17 lines
344 B
INI
17 lines
344 B
INI
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
[isort]
|
|
profile=black
|
|
quiet=true
|
|
multi_line_output=9
|
|
split_on_trailing_comma=false
|
|
|
|
known_revng=revng,tuple_tree_generator
|
|
known_webframework=flask,starlette
|
|
sections=FUTURE,STDLIB,FIRSTPARTY,WEBFRAMEWORK,THIRDPARTY,REVNG,LOCALFOLDER
|
|
|
|
line_length=99
|
|
src_paths=
|