From 5879a1f6c0d61731f62ddc05a8cb5704c047b498 Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Wed, 19 Jun 2024 14:30:29 -0600 Subject: [PATCH] Add I for isort functionality --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c93b2674..35a5af32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ target-version = "py38" # Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default. # Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or # McCabe complexity (`C901`) by default. -select = ["E4", "E7", "E9", "F", "UP"] +select = ["E4", "E7", "E9", "F", "I", "UP"] ignore = [] # Allow fix for all enabled rules (when `--fix`) is provided.