From 29a4062a48e16a479e866475cd0f8e882bd70d8d Mon Sep 17 00:00:00 2001 From: Miles Wells Date: Thu, 16 Jan 2025 14:42:43 +0200 Subject: [PATCH] Exlude docs/ from linter --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 3a0805e..7704ff7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,7 @@ exclude = ["one.tests*"] [tool.ruff] line-length = 99 +extend-exclude = ["docs"] [tool.ruff.lint] select = ["D", "E", "F", "W"]