2023-06-20 05:44:08 +02:00
|
|
|
# See https://pre-commit.com for more information
|
|
|
|
# See https://pre-commit.ci for more information
|
2023-04-12 07:55:40 +02:00
|
|
|
ci:
|
2023-06-20 05:44:08 +02:00
|
|
|
# This project is not active enough to justify weekly autoupdates.
|
|
|
|
autoupdate_schedule: quarterly
|
2023-04-12 07:55:40 +02:00
|
|
|
|
2023-10-01 09:00:55 +02:00
|
|
|
# Use pypy3 for the Python hooks
|
|
|
|
default_language_version:
|
|
|
|
python: pypy3
|
|
|
|
|
2023-02-21 15:51:47 +01:00
|
|
|
repos:
|
2023-03-07 19:30:30 +01:00
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-10-16 08:33:28 +02:00
|
|
|
rev: v4.5.0
|
2023-02-21 15:51:47 +01:00
|
|
|
hooks:
|
2023-03-07 19:30:30 +01:00
|
|
|
- id: check-added-large-files
|
|
|
|
- id: check-case-conflict
|
2023-10-01 09:00:55 +02:00
|
|
|
- id: check-yaml
|
2023-03-07 19:30:30 +01:00
|
|
|
- id: destroyed-symlinks
|
|
|
|
- id: detect-private-key
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: fix-byte-order-marker
|
2023-05-08 07:51:50 +02:00
|
|
|
- id: trailing-whitespace
|
2023-10-16 08:33:28 +02:00
|
|
|
args: ["--markdown-linebreak-ext", "md,markdown"]
|
|
|
|
exclude_types: [svg, tsv]
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: mixed-line-ending
|
|
|
|
args: [--fix=auto]
|
2023-02-21 15:51:47 +01:00
|
|
|
|
2023-10-01 09:00:55 +02:00
|
|
|
- repo: https://github.com/pre-commit-ci/pre-commit-ci-config
|
|
|
|
rev: v1.6.1
|
|
|
|
hooks:
|
|
|
|
- id: check-pre-commit-ci-config
|
|
|
|
|
2023-04-12 08:03:08 +02:00
|
|
|
- repo: https://github.com/thlorenz/doctoc
|
|
|
|
rev: v2.2.0
|
|
|
|
hooks:
|
|
|
|
- id: doctoc
|
2023-10-01 09:00:55 +02:00
|
|
|
args: [--update-only, --notitle]
|
2023-04-12 08:03:08 +02:00
|
|
|
|
2023-03-07 19:30:30 +01:00
|
|
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
2023-11-24 21:09:21 +01:00
|
|
|
rev: 0.27.1
|
2023-03-07 19:30:30 +01:00
|
|
|
hooks:
|
|
|
|
- id: check-dependabot
|
|
|
|
- id: check-github-workflows
|
|
|
|
- id: check-gitlab-ci
|
2023-04-12 07:55:40 +02:00
|
|
|
|
2023-03-07 19:34:24 +01:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2023-11-24 21:09:21 +01:00
|
|
|
rev: "v3.1.0"
|
2023-03-07 19:34:24 +01:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
2023-11-24 21:09:21 +01:00
|
|
|
#additional_dependencies: [
|
|
|
|
# https://www.npmjs.com/package/prettier
|
|
|
|
#"prettier@3.0.3",
|
|
|
|
# https://www.npmjs.com/package/@prettier/plugin-xml
|
|
|
|
#"@prettier/plugin-xml@3.2.1",
|
|
|
|
#]
|
2023-08-09 14:05:50 +02:00
|
|
|
|
2023-03-07 19:34:24 +01:00
|
|
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
2023-10-16 08:33:28 +02:00
|
|
|
rev: "2.7.3"
|
2023-03-07 19:34:24 +01:00
|
|
|
hooks:
|
|
|
|
- id: editorconfig-checker
|
|
|
|
alias: ec
|
2023-04-12 08:03:08 +02:00
|
|
|
args: [-disable-max-line-length]
|