Files
pinniped/.pre-commit-config.yaml
Ryan Richard 35c23a58e8
CodeQL / Analyze (go) (push) Failing after 2m6s
CodeQL / Analyze (javascript) (push) Failing after 1m35s
switch from CLA to DCO
Signed-off-by: Ryan Richard <richardry@vmware.com>
2026-04-29 10:03:07 -07:00

35 lines
1.1 KiB
YAML

# This is a configuration for https://pre-commit.com/.
# On macOS, try `brew install pre-commit` and then run `pre-commit install`.
exclude: '^(site|generated)/'
default_install_hook_types: [ pre-commit, commit-msg ]
default_stages: [ pre-commit ]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
# TODO: find a version of this to validate ytt templates?
# - id: check-yaml
# args: ['--allow-multiple-documents']
- id: check-json
- id: end-of-file-fixer
- id: trailing-whitespace
exclude: 'securetls*' # prevent the linter from running in this file because it's not smart enough not to trim the nmap test output.
- id: check-merge-conflict
- id: check-added-large-files
- id: check-byte-order-marker
- id: detect-private-key
exclude: testdata
- id: mixed-line-ending
- repo: local
hooks:
- id: validate-copyright-year
name: Validate copyright year
entry: hack/check-copyright-year.sh
language: script
stages: [ pre-commit ]
- id: check-signoff
name: Check for Signed-off-by
entry: 'grep -q "^Signed-off-by: "'
language: system
stages: [ commit-msg ]