language-resources/.pre-commit-config.yaml

57 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2023-05-09 11:05:05 +02:00
# SPDX-FileCopyrightText: 2023 Aminda Suomalainen
#
# SPDX-License-Identifier: CC0-1.0
2023-05-09 10:58:31 +02:00
ci:
# Forĝejo/Gitea mirrors will autoclose pull requests. This should decrease
# the frequency of unnecessary PRs.
# https://github.com/pre-commit-ci/issues/issues/83
autoupdate_schedule: quarterly
default_language_version:
python: pypy3
2023-05-09 10:58:31 +02:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2024-04-12 13:41:13 +02:00
rev: v4.6.0
2023-05-09 10:58:31 +02:00
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-yaml
2023-05-09 10:58:31 +02:00
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: destroyed-symlinks
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace
args: ["--markdown-linebreak-ext", "md"]
exclude_types: [tsv]
2023-05-09 10:58:31 +02:00
- repo: https://github.com/thlorenz/doctoc
rev: v2.2.0
hooks:
- id: doctoc
args: [--update-only, --notitle]
2023-05-09 10:58:31 +02:00
2023-05-09 11:01:10 +02:00
- repo: https://github.com/fsfe/reuse-tool
2024-04-12 13:41:13 +02:00
rev: v3.0.2
2023-05-09 11:01:10 +02:00
hooks:
- id: reuse
2023-05-09 10:58:31 +02:00
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v4.0.0-alpha.8"
2023-05-09 10:58:31 +02:00
hooks:
- id: prettier
additional_dependencies: [
# https://aminda.eu/n/prettier
"prettier@3.2.4",
]
2023-05-09 10:58:31 +02:00
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
2023-11-09 20:04:30 +01:00
rev: "2.7.3"
2023-05-09 10:58:31 +02:00
hooks:
- id: editorconfig-checker
alias: ec
args: [-disable-max-line-length]