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:
Anders Kaseorg 2021-03-04 14:33:41 -08:00 committed by Tim Abbott
parent cca7d30fad
commit a17fbb3b55
2 changed files with 7 additions and 6 deletions

View File

@ -1,5 +0,0 @@
[settings]
src_paths = ., tools, tools/setup/emoji
known_third_party = zulip
profile = black
line_length = 100

View File

@ -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