From 6c6e95f2d0c466fede065ff256fe16242252bc5a Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Thu, 8 Aug 2024 09:43:30 -0400 Subject: [PATCH] style: ignore INP001 in tests (#54) --- python/{{cookiecutter.project_slug}}/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/{{cookiecutter.project_slug}}/pyproject.toml b/python/{{cookiecutter.project_slug}}/pyproject.toml index 21bfbd4..d3a87ec 100644 --- a/python/{{cookiecutter.project_slug}}/pyproject.toml +++ b/python/{{cookiecutter.project_slug}}/pyproject.toml @@ -149,7 +149,8 @@ ignore = [ # ANN102 - missing-type-cls # S101 - assert # B011 - assert-false -"tests/*" = ["ANN001", "ANN2", "ANN102", "S101", "B011"] +# INP001 - implicit-namespace-package +"tests/*" = ["ANN001", "ANN2", "ANN102", "S101", "B011", "INP001"] [tool.ruff.format] docstring-code-format = true