lint-typecheck

Runs ESLint and TypeScript type checks on the frontend to report lint and type errors.

Updated Dec 28, 2025
One-click install
npx skills add https://github.com/AppleLamps/web-term --skill lint-typecheck
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lint-typecheck
Source: https://github.com/AppleLamps/web-term/tree/main/.claude/skills/lint-typecheck
Command: npx skills add https://github.com/AppleLamps/web-term --skill lint-typecheck

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires eslint, typescript.

What problem does it solve?

This Skill automates code quality checks for the frontend by running ESLint and TypeScript type checks to surface issues early.

Core Features & Use Cases

  • Run ESLint on the frontend to catch style and potential bugs
  • Run TypeScript compilation check (no emit) to verify type safety
  • Report summary: number of lint warnings, lint errors, and type errors

Quick Start

cd frontend && npm run lint cd frontend && npx tsc -b --noEmit If errors are found, list issues with file locations and offer to fix auto-fixable ESLint issues: npm run lint -- --fix