We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495b2d5 commit a6cf797Copy full SHA for a6cf797
2 files changed
Makefile
@@ -41,8 +41,8 @@ precommit: # Install pre-commit hooks
41
pre-commit: precommit
42
43
lint:
44
- poetry run ruff format
45
poetry run ruff check --fix
+ poetry run ruff format
46
poetry run pyright .
47
48
coverage:
pyproject.toml
@@ -1,6 +1,9 @@
1
[tool.ruff]
2
line-length = 120
3
4
+[tool.ruff.lint]
5
+select = ["E", "I"]
6
+
7
[tool.coverage.run]
8
branch = true
9
source = ["project"]
0 commit comments