From b981c065f6684817f3efa9a1b50a3d9c1b79e95d Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Mon, 6 Apr 2026 17:32:04 +0200 Subject: [PATCH] Delete .pre-commit-config.yaml --- .pre-commit-config.yaml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index c7dc0ec..0000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -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