repos: # General file checks - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 hooks: - id: check-added-large-files args: ['--maxkb=500'] - id: check-merge-conflict - id: check-symlinks - id: check-yaml args: [--allow-multiple-documents] - id: end-of-file-fixer - id: forbid-new-submodules - id: trailing-whitespace # YAML linting - repo: https://github.com/adrienverge/yamllint.git rev: v1.37.1 hooks: - id: yamllint args: [ "-d {extends: relaxed, rules: {line-length: disable}, ignore: chart}", "-s", ] - repo: https://github.com/jorisroovers/gitlint rev: v0.19.1 hooks: - id: gitlint stages: [commit-msg]