Move isort config to pyproject.toml

This commit is contained in:
Gabriel Augendre 2020-09-05 09:05:06 +02:00
parent 603cd31691
commit 2085f0bc89
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4
2 changed files with 4 additions and 2 deletions

View file

@ -1,2 +0,0 @@
[settings]
profile=black

View file

@ -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",
]