From 8edc84bf257003ad7a2b205144c77805e4c43642 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 18 Dec 2021 15:30:09 +0100 Subject: [PATCH] Exclude virtual environment from isort fixing --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index f0637d8c6..ad32bad4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ exclude = ''' line_length = 100 multi_line_output=0 lines_after_imports=2 +skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*"] [build-system] requires = ["setuptools >= 46.4.0", "wheel"]