Delete .pre-commit-config.yaml

This commit is contained in:
humocs-man
2026-04-06 17:32:04 +02:00
committed by GitHub
parent c4d6081815
commit b981c065f6
-20
View File
@@ -1,20 +0,0 @@
# .pre-commit-config.yaml
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-json
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: local
hooks:
- id: validate-brewfiles
name: Validate Brewfiles
entry: bash -c 'if command -v brew &> /dev/null; then for file in brew/*.Brewfile*; do [ -f "$file" ] || continue; brew bundle check --file="$file" || exit 1; done; else echo "⚠️ Homebrew not installed, skipping Brewfile validation"; fi'
language: system
files: '^brew/.*\.Brewfile.*$'
pass_filenames: false