From baa352519966e3354bfc4c85f90b5062eaef5321 Mon Sep 17 00:00:00 2001 From: nstarman Date: Wed, 13 Dec 2023 19:27:25 -0500 Subject: [PATCH] ignore N816 Signed-off-by: nstarman --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 12329475..8132bfad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -160,6 +160,7 @@ ignore = [ "F821", # undefined name <- jaxtyping "FIX002", # Line contains TODO, consider resolving the issue "N80", # Naming conventions. + "N816", # Variable in global scope should not be mixedCase "PD", # pandas-vet "PLR", # Design related pylint codes "PYI041", # Use `float` instead of `int | float` <- beartype is more strict