From d073d10f9f2327eb1061011ed180b95d66ca0677 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 21 Nov 2023 07:14:00 +1100 Subject: [PATCH] feat: add ruff isort ruleset --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e715ccb6ed..d8b26a86ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -203,7 +203,7 @@ ignore = [ "B008", # https://docs.astral.sh/ruff/rules/function-call-in-default-argument/ "B904", # https://docs.astral.sh/ruff/rules/raise-without-from-inside-except/ ] -select = ["B", "C", "E", "F", "W"] +select = ["B", "C", "E", "F", "W", "I"] exclude = [ ".git", "__pycache__",