LLM Skills
~/catalog/debugging & maintenance//lint-check

Lint Check

/lint-check

Run linting and code quality checks. Catches issues before they reach CI.

CloudAI-XCloudAI-X
1.4k
June 16, 2026
MIT License
// skill content

--- description: Runs linting and code quality checks. Identifies style issues and potential bugs, and enforces project standards. --- # Lint Check Run linting and code quality checks. Identifies issues before they reach CI. ## Phase 1: Detect Linting Tools Find the project's linting configuration: ``bash # JavaScript/TypeScript ls .eslintrc* eslint.config.* .prettierrc* 2>/dev/null # Python ls pyproject.toml .flake8 .ruff.toml setup.cfg 2>/dev/null # Go ls .golangci.yml .golangci.yaml 2>/dev/null # Rust ls rustfmt.toml .rustfmt.toml clippy.toml 2>/dev/null ## Phase 2: Run Linters ### JavaScript/TypeScript bash npx eslint . --ext .js,.ts,.tsx --format stylish npx prettier --check . ### Python bash ruff check . # or fallback flake8 . black --check . mypy . ### Go bash golangci-lint run gofmt -l . go vet ./... ### Rust bash cargo clippy -- -D warnings cargo fmt --check ## Phase 3: Categorize Issues ### Critical (Must Fix) - Security vulnerabilities - Undefined variables - Type errors - Potential null pointer issues - SQL injection patterns ### Warnings (Should Fix) - Unused variables/imports - Missing return types - Inconsistent naming - Complex expressions ### Style (Auto-fixable) - Formatting issues - Import ordering - Trailing whitespace - Line length ## Phase 4: Auto-Fix Option Offer to auto-fix style issues: bash # JavaScript/TypeScript npx eslint . --fix npx prettier --write . # Python ruff check . --fix black . isort . # Go gofmt -w . # Rust cargo fmt ## Output Format ## Lint Results: [PASS/FAIL/WARNINGS] ### Summary - Errors: X - Warnings: Y - Auto-fixable: Z ### Critical Issues (Must Fix) 1. **[Rule]** - file:line - Message: [linter message] - Fix: [how to fix] ### Warnings (Should Fix) 1. **[Rule]** - file:line - Message: [message] ### Auto-Fixed (if --fix was run) - [List of auto-fixed issues] ### Commands Used - [List all linting commands run] ### Recommendation [ ] Ready to commit [ ] Fix critical issues first [ ] Run auto-fix and review changes ## Usage This command ships with the project-starter plugin. Invoke with: /project-starter:lint-check`

// original public source
CloudAI-X/claude-workflow-v2
/commands/lint-check.md
License: MIT License
Independent project, not affiliated with Anthropic. This skill remains the property of its original author.
// install this skill
Paste this command in your terminal at the root of your project:
mkdir -p .claude/commands && curl -o ".claude/commands/lint-check.md" "https://raw.githubusercontent.com/CloudAI-X/claude-workflow-v2/main/commands/lint-check.md"
Then in Claude Code, type /lint-check to activate it.
open_in_newOpen original source
// save
Save available after sign in.
loginSign in to save
// information
CreatorCloudAI-X
Stars 1.4k
LicenseMIT License
UpdatedJune 16, 2026
Format.md
AccessFree
// similar

Skills Debugging & maintenance

View allarrow_forward