From 0304b87235e8d652c18fd7a2df962277cd65ad91 Mon Sep 17 00:00:00 2001 From: mdtanker Date: Tue, 21 Nov 2023 11:33:11 +0100 Subject: [PATCH] include ipynb in ruff --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6c1bece4..200ca7b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -186,10 +186,11 @@ flake8-unused-arguments.ignore-variadic-names = true isort.required-imports = ["from __future__ import annotations"] # Uncomment if using a _compat.typing backport # typing-modules = ["invert4geom._compat.typing"] - +extend-include = ["*.ipynb"] [tool.ruff.per-file-ignores] "tests/**" = ["T20"] "noxfile.py" = ["T20"] +"*.ipynb" = ["E402", "B018"] [tool.pylint]