Skip to content

Commit

Permalink
refactor: disable docstring linting for tests and __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
JabobKrauskopf committed Oct 16, 2024
1 parent c252323 commit 6cf1388
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ ignore = [
"ISC002",
]

[tool.ruff.per-file-ignores]
"tests/*" = ["D", "DOC"]
"*/__init__.py" = ["D", "DOC"]

[tool.ruff.lint.pydocstyle]
convention = "google"

Expand Down

0 comments on commit 6cf1388

Please sign in to comment.