Skip to content
Open
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
4 changes: 2 additions & 2 deletions .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
description: "Run 'ruff check' for extremely fast Python linting"
entry: ruff check --force-exclude
language: python
types_or: [python, pyi, jupyter]
types_or: [python, pyi, jupyter, markdown]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I'd just exclude this line for now. It shouldn't really hurt anything, but ruff check still doesn't perform any checks on Markdown files, only ruff format.

Suggested change
types_or: [python, pyi, jupyter, markdown]
types_or: [python, pyi, jupyter]

args: []
require_serial: true
additional_dependencies: []
Expand All @@ -14,7 +14,7 @@
description: "Run 'ruff format' for extremely fast Python formatting"
entry: ruff format --force-exclude
language: python
types_or: [python, pyi, jupyter]
types_or: [python, pyi, jupyter, markdown]
args: []
require_serial: true
additional_dependencies: []
Expand Down