From 66893753ba9534d67a285691d56e1431e8daf5d3 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 20 Dec 2022 15:03:10 +0200 Subject: [PATCH] Move isort config to pyproject.toml See: https://pycqa.github.io/isort/docs/configuration/black_compatibility.html --- pyproject.toml | 4 ++++ setup.cfg | 6 ------ 2 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index 7baec28..4fb236c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,3 +36,7 @@ ipython = "^8.7.0" [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api" + +[tool.isort] +profile = "black" +line_length=88 diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 9eea40a..0000000 --- a/setup.cfg +++ /dev/null @@ -1,6 +0,0 @@ -[isort] -multi_line_output=3 -include_trailing_comma=True -force_grid_wrap=0 -use_parentheses=True -line_length=88