added pre-commit and secrets detection

This commit is contained in:
2026-05-09 10:53:12 -06:00
parent cb3e33b5dc
commit f0f26f78f4
2 changed files with 147 additions and 0 deletions

10
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,10 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- repo: https://github.com/Yelp/detect-secrets
rev: v1.5.0
hooks:
- id: detect-secrets
args: ['--baseline', '.secrets.baseline']