mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
---
|
|
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
fail_fast: false
|
|
repos:
|
|
- repo: https://github.com/adrienverge/yamllint.git
|
|
rev: v1.27.1
|
|
hooks:
|
|
- id: yamllint
|
|
args:
|
|
- --config-file
|
|
- .github/linters/.yamllint.yaml
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.3.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: mixed-line-ending
|
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
|
rev: v1.3.0
|
|
hooks:
|
|
- id: forbid-crlf
|
|
- id: forbid-tabs
|
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
|
rev: v1.3.0
|
|
hooks:
|
|
- id: remove-crlf
|
|
- id: remove-tabs
|
|
- repo: https://github.com/sirosen/fix-smartquotes
|
|
rev: 0.2.0
|
|
hooks:
|
|
- id: fix-smartquotes
|
|
- repo: https://github.com/k8s-at-home/sops-pre-commit
|
|
rev: v2.1.1
|
|
hooks:
|
|
- id: forbid-secrets
|
|
- repo: https://github.com/igorshubovych/markdownlint-cli
|
|
rev: v0.32.0
|
|
hooks:
|
|
- id: markdownlint
|
|
args:
|
|
- --config
|
|
- ".github/linters/.markdownlint.yaml"
|