23 lines
561 B
YAML
23 lines
561 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
exclude: (^testing/Baseline|^auxil)
|
|
- id: end-of-file-fixer
|
|
exclude: (^testing/Baseline|examples/.*Baseline.*|^auxil)
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.8.1
|
|
hooks:
|
|
- id: ruff-format
|
|
- id: ruff
|
|
args: [--fix]
|
|
|
|
- repo: https://github.com/rhysd/actionlint
|
|
rev: v1.7.4
|
|
hooks:
|
|
- id: actionlint
|