Skip to content

Commit

Permalink
Fix lint configuration
Browse files Browse the repository at this point in the history
Enabling docstring linting inadvertently turned off
the default code linting checks.
  • Loading branch information
ncoghlan committed Nov 15, 2024
1 parent 68c52dd commit 2b317a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ target-version = "py311"
[tool.ruff.lint]
# Enable all `pydocstyle` rules, limiting to those that adhere to the
# Google convention via `convention = "google"`, below.
select = ["D"]
extend-select = ["D"]

# Disable `D105` (it's OK to skip writing docstrings for every magic method)
# Disable `D417` (not yet requiring documentation for every function parameter)
Expand Down

0 comments on commit 2b317a6

Please sign in to comment.