lint-web-app-pr

Lint and type-check PR-changed TypeScript and Vue files with ESLint and vue-tsc.

Updated Jul 6, 2020
One-click install
npx skills add https://github.com/guifry/devconfig --skill lint-web-app-pr
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: lint-web-app-pr
Source: https://github.com/guifry/devconfig/tree/main/claude/skills/lint-web-app-pr
Command: npx skills add https://github.com/guifry/devconfig --skill lint-web-app-pr

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Lint and type-check PR-changed files to ensure code quality before merging.

Core Features & Use Cases

  • Lint changed TypeScript and Vue files in a PR to surface issues early
  • Type-check changed files incrementally to speed up PR reviews
  • Use Case: in a PR, run this skill to validate code quality without running full CI

Quick Start

Run the lint-web-app-pr skill on the current PR branch to lint and type-check only the files changed.

Frequently Asked Questions about lint-web-app-pr

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I lint and type-check only changed files in a PR?▼

You can lint and type-check only PR-changed files by analyzing the git-diff of your current branch. This skill targets modified TypeScript and Vue files to quickly surface issues without running a full CI pipeline.

Can I run ESLint and vue-tsc incrementally on a Vue monorepo?▼

Yes, you can run ESLint and vue-tsc incrementally on a web-app monorepo. The skill identifies changed TypeScript and Vue files via git-diff and type-checks them to accelerate PR reviews.

What is the best way to speed up PR reviews for TypeScript and Vue code?▼

The best way to speed up PR reviews is to lint and type-check only the changed TypeScript and Vue files. This skill outputs a concise report of issues found in the git-diff, bypassing full repository checks.

Does this PR linting skill work with CI-parallel workflows?▼

Yes, this PR linting skill works with CI-parallel workflows. It validates code quality by checking branch-changed files and outputs a concise report suitable for parallel execution environments.