From cd67a7986b1a497034e3b1f23a43b3f75927c710 Mon Sep 17 00:00:00 2001 From: Judson Stevens Date: Sun, 17 Dec 2023 13:09:07 -0600 Subject: [PATCH] Fix megalinter issue --- pyproject.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 06cffb6..a465952 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,14 +92,11 @@ dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" # Python 3.10. target-version = "py310" -[tool.ruff] -# Ignore a variety of commonly ignored directories. -ignore = ["databases/**"] - [tool.ruff.mccabe] max-complexity = 10 [tool.ruff.per-file-ignores] +"databases/**" = ["*"] "**/database/*" = [ "A003", # We should allow shadowing "ANN002", # We don't want to type *args