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"]