mirror of
https://github.com/trailofbits/skills-curated
synced 2026-06-21 14:12:04 +00:00
5988966e3a
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>
32 lines
709 B
YAML
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
|