From 40b8f93f762e5539d1715de533dbc97ee069e070 Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Fri, 28 Jun 2024 09:18:15 +0200 Subject: [PATCH] ruff --- Makefile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c584d9f8d..136bbe230 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 f71509559..9a43d4479 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"