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"