15 lines
419 B
YAML
15 lines
419 B
YAML
# .pre-commit-config.yaml
|
|
repos:
|
|
- repo: https://github.com/Yelp/detect-secrets
|
|
rev: v1.5.0
|
|
hooks:
|
|
- id: detect-secrets
|
|
args: ['--baseline', '.secrets.baseline']
|
|
exclude: package.lock.json
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0 # Use the ref you want to point at
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: check-json
|
|
#- id: check-yaml
|