From f7a8cbae3f77c038ad42cca13fe23a7dfa1586d5 Mon Sep 17 00:00:00 2001 From: Amr Abed Date: Sun, 19 Oct 2025 17:21:12 -0400 Subject: [PATCH] Sort imports --- Makefile | 2 +- pyproject.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce9e60c..e6f799e 100644 --- a/Makefile +++ b/Makefile @@ -41,8 +41,8 @@ precommit: # Install pre-commit hooks pre-commit: precommit lint: - poetry run ruff format poetry run ruff check --fix + poetry run ruff format poetry run pyright . coverage: diff --git a/pyproject.toml b/pyproject.toml index 508e0bb..0429ed7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,9 @@ [tool.ruff] line-length = 120 +[tool.ruff.lint] +select = ["E", "I"] + [tool.coverage.run] branch = true source = ["project"]