スキル一覧に戻る
BerryKuipers

validate-lint

by BerryKuipers

Universal Claude Code configuration: agents, skills, workflows, and SessionStart hooks for consistent development across projects

5🍴 2📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: validate-lint description: Run ESLint and Prettier validation to check code style, formatting, and best practices. Returns structured output with error/warning counts, rule violations, and affected files. Used for code quality gates and pre-commit validation.

Validate Lint

Executes linting tools (ESLint, Prettier) to validate code style and formatting without making changes.

Usage

This skill runs linting checks and returns structured validation results.

Supported Tools

  • ESLint: JavaScript/TypeScript linting
  • Prettier: Code formatting validation
  • Supports both npm scripts and direct tool invocation

Output Format

Success (No Errors)

{
  "status": "success",
  "lint": {
    "status": "passing",
    "errors": 0,
    "warnings": 0,
    "files": []
  },
  "canProceed": true
}

Errors/Warnings Found

{
  "status": "warning",
  "lint": {
    "status": "failing",
    "errors": 5,
    "warnings": 12,
    "files": [
      "src/components/CharacterCard.tsx",
      "src/utils/helpers.ts"
    ],
    "rules": {
      "no-unused-vars": 3,
      "prefer-const": 2,
      "@typescript-eslint/no-explicit-any": 7
    }
  },
  "canProceed": false,
  "details": "5 linting error(s) must be fixed before proceeding"
}

When to Use

  • Quality gate validation (before commit/PR)
  • Pre-refactor validation
  • After code changes
  • Conductor Phase 3 (Quality Assurance)
  • Refactor agent validation

Requirements

  • ESLint installed (npm package)
  • Configuration file (.eslintrc, eslint.config.js, or package.json)
  • Optional: Prettier for formatting checks

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です