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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
hooks:
# Run the linter.
- id: "ruff-check"
args: [ "--fix" ]
args: ["--show-fixes"]
# Run the formatter.
- id: "ruff-format"

Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ exclude = [
"venv",
".venv",
]
extend-select = [
"T100", # detect breakpoints
]

[tool.ruff.format]
quote-style = "double"
Expand Down
2 changes: 0 additions & 2 deletions src/pulp_docs/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,6 @@ def on_files(self, files: Files, /, *, config: MkDocsConfig) -> Files | None:
log.warning(f"Found deprecated 'staging_docs' directory in {comp.spec.path}.")
else:
docs_dir = comp_dir / "docs"
if not docs_dir.exists():
breakpoint()
assert docs_dir.exists()

for dirpath, dirnames, filenames in docs_dir.walk(follow_symlinks=True):
Expand Down