Files
trailofbits-skills-curated/.pre-commit-config.yaml
T
Dan Guido 5988966e3a Initial skills-curated marketplace infrastructure
Curated, community-vetted Claude Code plugin marketplace with CI checks
mirroring trailofbits/skills: ruff, shellcheck, shfmt, bats linting plus
JSON validation, marketplace consistency, frontmatter, hardcoded path,
and personal email checks. Includes ask-questions-if-underspecified as
seed plugin.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-06 10:59:09 -05:00

32 lines
709 B
YAML

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.13
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
- repo: local
hooks:
- id: shellcheck
name: shellcheck
entry: shellcheck
args: [-x]
language: system
types: [shell]
- repo: https://github.com/scop/pre-commit-shfmt
rev: v3.12.0-2
hooks:
- id: shfmt
args: [-i, "2", -ci, --write]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-yaml
args: [--unsafe]
- id: check-json
- id: end-of-file-fixer
- id: trailing-whitespace