From 7f2a93d3291245d10366e67b5dd4f7c58786676f Mon Sep 17 00:00:00 2001 From: Szabolcs Dombi Date: Mon, 29 Jan 2024 23:30:40 +0200 Subject: [PATCH] isort config --- .isort.cfg | 7 ------- pyproject.toml | 8 ++++++++ 2 files changed, 8 insertions(+), 7 deletions(-) delete mode 100644 .isort.cfg diff --git a/.isort.cfg b/.isort.cfg deleted file mode 100644 index 3395ad53..00000000 --- a/.isort.cfg +++ /dev/null @@ -1,7 +0,0 @@ -[settings] -line_length=120 -multi_line_output=5 -include_trailing_comma=True - -known_first_party=assets, utils, window -known_third_party=zengl, _zengl diff --git a/pyproject.toml b/pyproject.toml index 9787c3bd..0574c613 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,11 @@ [build-system] requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" + +[tool.isort] +line_length = 120 +multi_line_output = 5 +include_trailing_comma = true + +known_first_party = [] +known_third_party = ["zengl", "_zengl"]