Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.
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
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v6.0.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -24,48 +24,48 @@ repos:
- id: detect-private-key

- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.20.0
hooks:
- id: pyupgrade
args: [--py38-plus]
name: Upgrade code

- repo: https://github.com/myint/docformatter
rev: v1.5.1
rev: v1.7.7
hooks:
- id: docformatter
args: [--in-place]

- repo: https://github.com/asottile/yesqa
rev: v1.4.0
rev: v1.5.0
hooks:
- id: yesqa
name: Unused noqa

- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 6.0.1
hooks:
- id: isort
name: Format imports

- repo: https://github.com/psf/black
rev: 23.1.0
rev: 25.1.0
hooks:
- id: black
name: Format code
exclude: docs/source-app

- repo: https://github.com/executablebooks/mdformat
rev: 0.7.16
rev: 0.7.22
hooks:
- id: mdformat
additional_dependencies:
- mdformat-gfm
- mdformat-black
- mdformat_frontmatter

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.237'
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.12.9'
hooks:
- id: ruff
args: ["--fix"]
1 change: 1 addition & 0 deletions pt_lightning_sphinx_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

From https://github.com/shiftlab/lightning_sphinx_theme.
"""

from os import path

__version__ = "0.0.31"
Expand Down
Loading