From 940e1cdd42e295be318ce8335795a9512c31b8c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jossu=C3=A9=20Arteche=20Mu=C3=B1oz?= Date: Fri, 9 Jan 2026 19:33:47 -0500 Subject: [PATCH] ci(pyproject): make ruff and mypy ignore results and plots folders --- plot_average_only.py => plots/plot_average_only.py | 0 plot_results.py => plots/plot_results.py | 0 pyproject.toml | 3 ++- 3 files changed, 2 insertions(+), 1 deletion(-) rename plot_average_only.py => plots/plot_average_only.py (100%) rename plot_results.py => plots/plot_results.py (100%) diff --git a/plot_average_only.py b/plots/plot_average_only.py similarity index 100% rename from plot_average_only.py rename to plots/plot_average_only.py diff --git a/plot_results.py b/plots/plot_results.py similarity index 100% rename from plot_results.py rename to plots/plot_results.py diff --git a/pyproject.toml b/pyproject.toml index 7daa299..33f31fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ lint.select = [ ] lint.ignore = ["D100", "D104", "D203", "D212"] -exclude = [".venv", "build", "dist", "__pycache__", ".git"] +exclude = [".venv", "build", "dist", "__pycache__", ".git", "plots/", "results/"] format.quote-style = "double" format.indent-style = "space" line-length = 88 @@ -75,3 +75,4 @@ strict_equality = true warn_unused_ignores = true warn_redundant_casts = true warn_return_any = true +exclude = ["results/", "plots/"]