Skip to content

Commit

Permalink
style: ignore INP001 in tests (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson authored Aug 8, 2024
1 parent eb0064f commit 6c6e95f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/{{cookiecutter.project_slug}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6c6e95f

Please sign in to comment.