91 lines
3.0 KiB
YAML
91 lines
3.0 KiB
YAML
# Pre-commit Framework Configuration
|
|
# Generated by dev-system/ci
|
|
# Configures git pre-commit hooks for Rust + Markdown projects
|
|
|
|
repos:
|
|
# ============================================================================
|
|
# Rust Hooks (ACTIVE)
|
|
# ============================================================================
|
|
- repo: local
|
|
hooks:
|
|
- id: rust-fmt
|
|
name: Rust formatting (cargo +nightly fmt)
|
|
entry: bash -c 'cargo +nightly fmt --all -- --check'
|
|
language: system
|
|
types: [rust]
|
|
pass_filenames: false
|
|
stages: [pre-commit]
|
|
|
|
- id: rust-clippy
|
|
name: Rust linting (cargo clippy)
|
|
entry: bash -c 'cargo clippy --all-targets -- -D warnings'
|
|
language: system
|
|
types: [rust]
|
|
pass_filenames: false
|
|
stages: [pre-commit]
|
|
|
|
# NOTE: Disabled - cargo test blocks git push. Tests should run in CI/CD.
|
|
# - id: rust-test
|
|
# name: Rust tests
|
|
# entry: bash -c 'cargo test --workspace'
|
|
# language: system
|
|
# types: [rust]
|
|
# pass_filenames: false
|
|
# stages: [pre-push]
|
|
|
|
# NOTE: Disabled - cargo deny blocks git push. Should run in CI/CD.
|
|
# - id: cargo-deny
|
|
# name: Cargo deny (licenses & advisories)
|
|
# entry: bash -c 'cargo deny check licenses advisories'
|
|
# language: system
|
|
# pass_filenames: false
|
|
# stages: [pre-push]
|
|
|
|
# ============================================================================
|
|
# Markdown Hooks (ACTIVE)
|
|
# ============================================================================
|
|
- repo: local
|
|
hooks:
|
|
- id: markdownlint
|
|
name: Markdown linting (markdownlint-cli2)
|
|
entry: markdownlint-cli2
|
|
language: system
|
|
types: [markdown]
|
|
stages: [pre-commit]
|
|
|
|
# NOTE: Disabled - markdownlint-cli2 already catches syntax issues
|
|
# This script is redundant and causing false positives
|
|
# - id: check-malformed-fences
|
|
# name: Check malformed closing fences
|
|
# entry: bash -c 'cd .. && nu scripts/check-malformed-fences.nu $(git diff --cached --name-only --diff-filter=ACM | grep "\.md$" | grep -v ".coder/" | grep -v ".claude/" | grep -v "old_config/" | tr "\n" " ")'
|
|
# language: system
|
|
# types: [markdown]
|
|
# pass_filenames: false
|
|
# stages: [pre-commit]
|
|
# exclude: ^\.coder/|^\.claude/|^old_config/
|
|
|
|
# ============================================================================
|
|
# General Pre-commit Hooks
|
|
# ============================================================================
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: check-added-large-files
|
|
args: ['--maxkb=1000']
|
|
|
|
- id: check-case-conflict
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: check-toml
|
|
|
|
- id: check-yaml
|
|
exclude: ^\.woodpecker/
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: trailing-whitespace
|
|
exclude: \.md$
|
|
|
|
- id: mixed-line-ending
|