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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ repos:
- "--py39-plus"

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.8.6"
rev: "v0.9.4"
hooks:
- id: ruff
args:
- --fix-only

- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black

- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 6.0.0
hooks:
- id: isort
args:
Expand All @@ -57,7 +57,7 @@ repos:
- --select=E9,F63,F7,F82

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.43.0
rev: v0.44.0
hooks:
- id: markdownlint
args:
Expand Down
6 changes: 3 additions & 3 deletions scripts/100_mkdocs_config_merger.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#! python3 # noqa: E265

"""
Description: Merge different mkdocs configuration files from a directory.
Author: Julien Moura (@[email protected])
Description: Merge different mkdocs configuration files from a directory.
Author: Julien Moura (@[email protected])

Requires: MkDocs installed (it uses its YAML loader)
Requires: MkDocs installed (it uses its YAML loader)
"""

# -- IMPORTS --
Expand Down