From 68089f65cdb4a9a59772ca1d2aacebf63a670d14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danie=CC=88l=20de=20Kok?= Date: Mon, 26 Jun 2023 11:40:32 +0200 Subject: [PATCH] Configure isort to use the Black profile, recursively isort the `spacy` module --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 837cf1fd8..3891d1378 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,3 +9,6 @@ requires = [ "numpy>=1.15.0", ] build-backend = "setuptools.build_meta" + +[tool.isort] +profile = "black"