Skip to content

Commit

Permalink
added docstring style to ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjalling-dejong committed Nov 27, 2024
1 parent 262d937 commit b969eb6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,17 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"


[tool.ruff.lint]
select = ["ALL"]

[tool.ruff]
line-length = 120
ignore = ["DTZ005", "DTZ001", "FA100"]
exclude = ["scripts"]

[tool.ruff.lint]
select = ["ALL"]

[tool.ruff.per-file-ignores]
"tests/**" = ["D100", "D101", "D102", "D103", "D104", "PT001", "ANN201", "S101", "PLR2004", "ANN001"]
"tests/**" = ["D100", "D101", "D102", "D103", "D104", "PT001", "ANN201", "S101", "PLR2004", "ANN001"]

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

0 comments on commit b969eb6

Please sign in to comment.