From e9ca466da828ef14579b6ee9c6daa967e45e6226 Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Sun, 24 Nov 2024 10:22:26 +0100 Subject: [PATCH] Disable sorted module exports lint --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1e0b51c..17f5267 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ extend-exclude = ["fimfarchive/__init__.py"] [tool.ruff.lint] select = ["A", "E", "F", "N", "RUF", "T10", "W"] -ignore = ["N801", "RUF012"] +ignore = ["N801", "RUF012", "RUF022"] [build-system] requires = ["hatchling"]