From 0858d1db066eca30cd67c9de2dea817e7e1492f1 Mon Sep 17 00:00:00 2001 From: holtskinner Date: Thu, 22 May 2025 11:37:02 -0700 Subject: [PATCH] ci: Update Ruff.toml to include docstring lint for types.py --- .ruff.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/.ruff.toml b/.ruff.toml index f4baf437..563cb5c6 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -119,7 +119,6 @@ inline-quotes = "single" "__init__.py" = ["F401"] # Ignore unused imports in __init__.py "*_test.py" = ["D", "ANN"] # Ignore docstring and annotation issues in test files "test_*.py" = ["D", "ANN"] # Ignore docstring and annotation issues in test files -"types.py" = ["D", "E501", "N815"] # Ignore docstring and annotation issues in types.py [format] docstring-code-format = true