diff --git a/Makefile b/Makefile index c584d9f8..136bbe23 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ build: typecheck test python -m build lint: - ruff . + ruff check . test: pytest --disable-warnings diff --git a/pyproject.toml b/pyproject.toml index f7150955..9a43d447 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,7 @@ notebooks = [ [tool.ruff] # ignore line too long -ignore = ["E501"] +lint.ignore = ["E501"] [tool.mypy] python_version = "3.9"