← Back to list

check
by bodrovphone
⭐ 1🍴 0📅 Jan 19, 2026
SKILL.md
name: check description: Run TypeScript type-check and ESLint, then fix any errors found. Use when you need to validate code quality or fix linting issues.
TypeScript and ESLint Check & Fix
Run TypeScript type-check and ESLint, then fix any errors found.
Instructions
-
Run the check command:
- Execute
npm run checkto run both TypeScript type-check and ESLint - Capture and analyze all errors and warnings
- Execute
-
If errors are found:
- Analyze each error carefully before making changes
- Fix TypeScript errors:
- Resolve type mismatches
- Add missing type annotations
- Fix import/export issues
- Ensure proper null/undefined handling
- Fix ESLint errors:
- CRITICAL: For
no-unused-varserrors, DELETE unused code completely - DO NOT prefix variables with underscores - remove them instead
- Fix import order and formatting issues
- Resolve any other ESLint rule violations
- CRITICAL: For
- Use appropriate tools:
- Use
Edittool for file changes (not bash sed/awk) - Use
Readtool to examine files before editing - Make targeted, precise fixes
- Use
-
Re-run the check:
- After fixing errors, run
npm run checkagain - Verify all errors are resolved
- After fixing errors, run
-
Repeat until clean:
- Continue the fix-and-check cycle until
npm run checkpasses without errors - Report the final status
- Continue the fix-and-check cycle until
Project-Specific Guidelines
- Unused Code Policy: DELETE unused imports, variables, and parameters - don't prefix with underscores
- Architecture: Follow
/src/directory structure with features, components, lib separation - Type Safety: Maintain proper TypeScript types throughout
- Code Quality: Ensure all fixes improve code quality, don't just silence errors
Success Criteria
- ✅
npm run checkcompletes with exit code 0 - ✅ No TypeScript errors
- ✅ No ESLint errors or warnings
- ✅ All unused code removed (not just prefixed)
- ✅ Code remains functional after fixes
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon