Files
Giacomo Vercesi 3d6a1d3764 isort: fix behavior with black
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.
2026-05-18 10:13:54 +02:00

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=