From 2085f0bc89c8c3ad8e594e54a200269fbd5fa72c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 5 Sep 2020 09:05:06 +0200 Subject: [PATCH] Move isort config to pyproject.toml --- .isort.cfg | 2 -- pyproject.toml | 4 ++++ 2 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 .isort.cfg diff --git a/.isort.cfg b/.isort.cfg deleted file mode 100644 index b9fb3f3..0000000 --- a/.isort.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[settings] -profile=black diff --git a/pyproject.toml b/pyproject.toml index 14521c4..b94d26e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,13 @@ [tool.black] target-version = ['py38'] +[tool.isort] +profile = "black" + [tool.pytest.ini_options] minversion = "6.0" DJANGO_SETTINGS_MODULE = "blog.settings" testpaths = [ "articles", + "blog", ]