From 9a651ad2828240468afb682fc7d49cc3fe656f62 Mon Sep 17 00:00:00 2001 From: Pierre Chevalier Date: Mon, 19 Oct 2020 10:41:32 +0100 Subject: [PATCH] Configure black to omit subdirectories of tools These directories are git submodules. We don't want to modify them. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2c45d05 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[tool.black] +exclude = 'tools/.*/' +