mirror of https://github.com/zulip/zulip.git
isort: Move configuration into pyproject.toml.
Since we already have one for Black, this saves a top-level file. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
cca7d30fad
commit
a17fbb3b55
|
@ -1,5 +0,0 @@
|
||||||
[settings]
|
|
||||||
src_paths = ., tools, tools/setup/emoji
|
|
||||||
known_third_party = zulip
|
|
||||||
profile = black
|
|
||||||
line_length = 100
|
|
|
@ -1,3 +1,9 @@
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 100
|
line-length = 100
|
||||||
target-version = ['py36']
|
target-version = ["py36"]
|
||||||
|
|
||||||
|
[tool.isort]
|
||||||
|
src_paths = [".", "tools", "tools/setup/emoji"]
|
||||||
|
known_third_party = "zulip"
|
||||||
|
profile = "black"
|
||||||
|
line_length = 100
|
||||||
|
|
Loading…
Reference in New Issue