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
2 changes: 1 addition & 1 deletion template/justfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ check-unused:
# - 60 %: attribute, class, function, method, property, variable
# There are some things should be ignored though, with the allowlist.
# Create an allowlist with `vulture --make-allowlist`
uv run vulture src/ tests/ **/vulture-allowlist.py
uv run vulture --min-confidence 100 src/ tests/ **/vulture-allowlist.py

# Re-build the README file from the Quarto version
build-readme:
Expand Down
4 changes: 3 additions & 1 deletion template/ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ extend-select = [
# Add rule that all functions have docstrings.
"D",
# Add isort to list.
"I"
"I",
# Check for unused arguments
"ARG",
]
# Ignore missing docstring at the top of files
ignore = ["D100"]
Expand Down
Loading