Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
Runs a style-check script after every Write, Edit, or MultiEdit tool use to enforce code formatting or linting rules. Modifies files.
1 event · 3 hooks
npx claudepluginhub jagreehal/jagreehal-claude-skills --plugin code-reviewSafety signals detected in this hook configuration
Where this hook configuration is defined
Defined in hooks/hooks.json
Event handlers and matchers — expand Raw Configuration for the full JSON
Write|Edit|MultiEditif [ -f package.json ] && [ -f tsconfig.json ]; then (npm run build 2>&1 || true) | head -30; fiif [ -f package.json ] && ([ -f eslint.config.mjs ] || [ -f .eslintrc.js ] || [ -f .eslintrc.json ] || [ -f eslint.config.js ]); then (npm run lint 2>&1 || true) | head -30; fiif [ -f package.json ] && (grep -q '"test"' package.json || grep -q '"test:' package.json); then (npm run test 2>&1 || true) | head -40; fiShare bugs, ideas, or general feedback.