Skip to content

Commit

Permalink
doc: Better ruff config
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuloc committed Sep 10, 2024
1 parent d6c7bae commit 34ec9a5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,12 @@ target-version = "py39"

[tool.ruff.lint]
# select all cause we like being suffering
select = ["ALL"]
select = ["ALL",
# TODO: Augment the numpy convention rules to make sure we add all the params
# Uncomment below D417
"D415",
# "D417",
]
ignore = [
"ANN101", # Missing type annotation for `self` in method - we know what self is..
"COM812", # Ignoring conflicting rules that may cause conflicts when used with the formatter
Expand Down

0 comments on commit 34ec9a5

Please sign in to comment.