ワンクリックで
lint-typescript
Run TypeScript/React lint tools, then check custom coding rules. Severity labels in Japanese.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run TypeScript/React lint tools, then check custom coding rules. Severity labels in Japanese.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run JavaScript/React lint tools, then check custom coding rules. Severity labels in Japanese.
Run Python lint tools, then check custom coding rules. Severity labels in Japanese.
Run shell lint tools, then check custom coding rules. Severity labels in Japanese.
Generates commit messages and checks code quality for staged changes. Prefer gcmA alias for fast use.
| name | lint-typescript |
| description | Run TypeScript/React lint tools, then check custom coding rules. Severity labels in Japanese. |
| allowed-tools | bash, write, edit |
Detect available tools (make, npm, npx, tsc, eslint), then choose ONE branch:
Branch A — Makefile has lint: target:
make lint 2>&1
Branch B — package.json has lint script:
npm run lint 2>&1
Branch C — fallback to ESLint + tsc:
npx eslint --fix . 2>&1 || true
command -v tsc >/dev/null 2>&1 && tsc --noEmit 2>&1 || true
Then scan custom rules (fix iteratively):
[高] Must fix:
t() (i18n)any type usedinterface used for props/state (use type)// prefix)# ------------------------------------------------------------------------------ (80 chars)[中] Should fix:
test_*.ts / test_*.tsxuse prefix[低] Nice to fix:
console.log left in production codePrint summary:
==================================================
Lint complete (TypeScript)
==================================================
Files checked : <N>
[高] Critical : <N>
[中] Important : <N>
[低] Minor : <N>
==================================================