lint-and-validate

MANDATORY: Run appropriate validation tools after EVERY code change. Do not finish a task until the code is error-free.

Content Preview
---
name: lint-and-validate
description: "MANDATORY: Run appropriate validation tools after EVERY code change. Do not finish a task until the code is error-free."
risk: unknown
source: community
date_added: "2026-02-27"
---

# Lint and Validate Skill

> **MANDATORY:** Run appropriate validation tools after EVERY code change. Do not finish a task until the code is error-free.

### Procedures by Ecosystem

#### Node.js / TypeScript
1. **Lint/Fix:** `npm run lint` or `npx eslint "path" --fix`
2. **
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/lint-and-validate.md \
  https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/lint-and-validate/SKILL.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/sickn33/antigravity-awesome-skills

Then reference at skills/lint-and-validate/SKILL.md

Related Skills