mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
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: v4.6.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- id: check-merge-conflict
|
|
- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
|
rev: 3.0.0
|
|
hooks:
|
|
- id: shellcheck
|
|
- id: markdownlint
|
|
exclude: '^content'
|
|
- repo: https://github.com/mrtazz/checkmake
|
|
rev: 0.2.2
|
|
hooks:
|
|
- id: checkmake
|
|
exclude: lexers/makefile.xml
|
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
|
rev: 0.29.2
|
|
hooks:
|
|
- id: check-github-workflows
|
|
- repo: https://github.com/commitizen-tools/commitizen
|
|
rev: v3.29.0 # automatically updated by Commitizen
|
|
hooks:
|
|
- id: commitizen
|
|
- id: commitizen-branch
|
|
stages:
|
|
- post-commit
|
|
- push
|