From c5f1a5dd5a9d31bc6b9da2f2fbf65f889ead0ae3 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 18 Aug 2024 12:40:47 +0200 Subject: [PATCH] Ignore newly-arisen ruff issues --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4e9e982..d162bf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,10 +79,14 @@ extend-ignore = [ "E242", # tab after comma "E265", # block comment should start with # "E402", # module level import not at the top of file + + # TODO + "UP031", # f-string ] [tool.ruff.lint.per-file-ignores] "examples/jw_meshtools.py" = ["N806", "N803", "N802"] +"examples/jw_mesh_examples.ipynb" = ["E", "Q", "N", "I", "UP", "W", "F"] [tool.ruff.lint.flake8-quotes] inline-quotes = "double"