mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-03 01:00:54 +02:00
44 lines
1.2 KiB
YAML
44 lines
1.2 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/alessandrojcm/commitlint-pre-commit-hook
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: commitlint
|
|
stages: [commit-msg]
|
|
additional_dependencies: ['@commitlint/config-angular']
|
|
- repo: https://github.com/adrienverge/yamllint.git
|
|
rev: v1.26.1
|
|
hooks:
|
|
- id: yamllint
|
|
args:
|
|
- -c
|
|
- ".github/yamllint.config.yaml"
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.0.1
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: check-added-large-files
|
|
args: [--maxkb=2048]
|
|
- id: check-merge-conflict
|
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
|
rev: v1.1.10
|
|
hooks:
|
|
- id: forbid-crlf
|
|
- id: forbid-tabs
|
|
- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
|
rev: 2.1.5
|
|
hooks:
|
|
- id: shellcheck
|
|
args: [--severity=error]
|
|
- 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.0.3
|
|
hooks:
|
|
- id: forbid-secrets
|