Skip to content
Merged
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
22 changes: 21 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,29 @@ repos:
- id: blacken-docs
alias: black
additional_dependencies: [black>=26.3.1]
- repo: local
hooks:
- id: check-docs-build
name: Ensure the docs build without errors
entry: sphinx-build -b html docs docs/_build --fail-on-warning --fresh-env
language: python
additional_dependencies:
[
"aenum",
"deprecation",
"msgpack",
"apache-airflow",
"pydata-sphinx-theme>=0.16.0",
"sphinx",
"sphinx-autoapi",
"sphinx-autobuild",
"sphinx-reredirects",
"sphinxcontrib.mermaid",
]
pass_filenames: false
files: ^docs/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.19.1"

hooks:
- id: mypy
name: mypy-python
Expand Down
Loading