From cc03e477263328bb48b8a2ef7be592ef8446e2c2 Mon Sep 17 00:00:00 2001 From: Ou Ku Date: Fri, 10 Jan 2025 15:21:41 +0100 Subject: [PATCH] allow capital variables (#40) --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d73d717..6121e1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -74,7 +74,8 @@ lint.select = [ "PLE", # Pylint error https://github.com/charliermarsh/ruff#error-ple ] lint.ignore = [ -"D100", "D101", "D104", "D105", "D106", "D107", "D203", "D213", "D413" +"D100", "D101", "D104", "D105", "D106", "D107", "D203", "D213", "D413", +"N806" # Allow capital letters in variables ] # docstring style line-length = 120