Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-01-03 00:26:09 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-01-03 00:26:09 +0300
commitc63d33245c00b949eb1db5aef3740c7a59e79a33 (patch)
tree7d1f2b36daaff69455954ab852b5c626877f749b /pyproject.toml
parent7bf5267cf22600c38500c8ac311e2acb99b08833 (diff)
ci: Add isort config
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index e4026f5db..6b40c9573 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -170,3 +170,11 @@ max-complexity = 15
inline-quotes = "single"
docstring-quotes = "single"
multiline-quotes = "single"
+
+[tool.isort]
+force_alphabetical_sort_within_sections = true
+force_single_line = true
+group_by_package = true
+known_typing = ["typing"]
+sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
+skip_gitignore = true