From 8c7759425594e4dffe2307019a43b27e9dec8fc6 Mon Sep 17 00:00:00 2001 From: Franccesco Orozco Date: Thu, 23 Jul 2026 19:55:23 -0600 Subject: [PATCH] dream: remove unused FAST ruff rules Dream dream-2026-07-23.1 finding 010. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fa914f1..8bda8a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,6 @@ select = [ "SIM", # simplify — call out over-engineered constructs; prefer the obvious one-liner. "N", # pep8-naming — enforce PEP 8 names for classes, funcs, vars, etc. "RUF", # Ruff-native extras — Ruff-only correctness/perf rules (a la "unicorn"). - "FAST", # fastapi — idiomatic FastAPI patterns and anti-pattern detection. "DOC", # pydoclint — Google/Numpy docstring section order & completeness. "D", # pydocstyle — PEP 257 docstring formatting conformance. "ARG", # unused-arguments — catch never-used *args/**kwargs/params.