From 4e73f27208de099aede32393fcb1f6f43af36ae4 Mon Sep 17 00:00:00 2001 From: John Parejko Date: Tue, 16 Apr 2024 09:47:47 -0700 Subject: [PATCH] Add N999 to example ruff config Our packages and modules mostly all violate this, and that's ok. --- python/examples/pyproject-ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/python/examples/pyproject-ruff.toml b/python/examples/pyproject-ruff.toml index 17ee8cb4..04d4e27d 100644 --- a/python/examples/pyproject-ruff.toml +++ b/python/examples/pyproject-ruff.toml @@ -10,6 +10,7 @@ ignore = [ "N813", "N815", "N816", + "N999", ] line-length = 110 select = [