lint-and-validate
Automation & Intégrations"Automatic quality control, linting, and static analysis procedures. Use after every code modification to ensure syntax correctness and project standards. Triggers onKeywords: lint, format, check, validate, types, static analysis."
Documentation
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
npm run lint or npx eslint "path" --fixnpx tsc --noEmitnpm audit --audit-level=high#### Python
ruff check "path" --fix (Fast & Modern)bandit -r "path" -llmypy "path"The Quality Loop
npm run lint && npx tsc --noEmitError Handling
lint fails: Fix the style or syntax issues immediately.tsc fails: Correct type mismatches before proceeding..eslintrc, tsconfig.json, pyproject.toml and suggest creating one.---
Strict Rule: No code should be committed or reported as "done" without passing these checks.
---
Scripts
| Script | Purpose | Command |
|--------|---------|---------|
| scripts/lint_runner.py | Unified lint check | python scripts/lint_runner.py |
| scripts/type_coverage.py | Type coverage analysis | python scripts/type_coverage.py |
Compétences similaires
Explorez d'autres agents de la catégorie Automation & Intégrations
mlops-engineer
Build comprehensive ML pipelines, experiment tracking, and model
airtable-automation
"Automate Airtable tasks via Rube MCP (Composio): records, bases, tables, fields, views. Always search tools first for current schemas."
backend-development-feature-development
"Orchestrate end-to-end backend feature development from requirements to deployment. Use when coordinating multi-phase feature delivery across teams and services."