code-linting

Detect and resolve linting and formatting issues in Python and JavaScript projects.

Updated Jan 19, 2026
One-click install
npx skills add https://github.com/rauly-1408/order-saas --skill code-linting-rauly-1408
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-linting
Source: https://github.com/rauly-1408/order-saas/tree/main/.claude/skills/code-linting
Command: npx skills add https://github.com/rauly-1408/order-saas --skill code-linting-rauly-1408

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill solves inconsistent code quality and formatting issues by providing a unified workflow for detecting and fixing lint violations across Python and JavaScript projects.

Core Features & Use Cases

  • Multi-language linting: Runs ruff checks and formatting for Python projects and Biome checks for JavaScript and TypeScript projects.
  • Safe remediation workflow: Reviews lint output, applies supported automatic fixes, and verifies changes before completion.
  • Use Case: A developer maintaining a full-stack application can use this Skill to identify style violations, format code consistently, and prepare a cleaner codebase for review.

Quick Start

Use the code-linting skill to check and fix lint issues in my project while following the existing configuration files.

Frequently Asked Questions about code-linting

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

FAQPage Schema
How do I run lint checks and fix formatting issues across a full-stack project?

To run lint checks and fix formatting issues, you need a workflow that executes ruff for Python and Biome for JavaScript, applying supported automatic fixes and verifying changes before completion to ensure consistent code quality.

What is the safest way to apply automatic lint fixes to my codebase?

The safest way to apply automatic lint fixes involves reviewing the lint output first, applying only supported automatic fixes, and verifying the changes before finalizing the process to prevent unintended code modifications.

Does this linting workflow support both Python and JavaScript projects?

Yes, this linting workflow supports both Python and JavaScript projects by running ruff checks and formatting for Python, alongside Biome validation for JavaScript and TypeScript files.

Do I need existing configuration files to check for lint violations?

Yes, you need project-specific linter configurations in place. The lint execution is configuration-aware, meaning it relies on your existing ruff and Biome configuration files to maintain consistent code quality standards.

Why are my ruff checks not resolving all the style violations in my Python code?

Ruff checks may not resolve all style violations because only supported automatic fixes are applied. Some complex linting problems require manual resolution after reviewing the validation output.