Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ default: install
install:
uv sync --all-extras --all-groups --frozen
uv tool install pre-commit --with pre-commit-uv --force-reinstall
uv run pre-commit install

install-docs:
uv sync --group docs --frozen --no-group dev
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ line-length = 120
include = ["pyproject.toml", "tests/**", ]

[tool.ruff.lint]
select = ["F", "B", "I", "F", "W", "E", "A", "N", "D"]
select = ["F", "B", "I", "F", "W", "E", "A", "N", "D","DOC"]

fixable = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D"]
"docs/*" = ["D"]
"tests/*" = ["D", "DOC"]
"docs/*" = ["D", "DOC"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.mypy]
Expand Down