biome-linting

Applies Biome linting to JavaScript/TypeScript projects with auto-fix and JSON output.

187|20|Updated Nov 20, 2025
One-click install
npx skills add https://github.com/TheBushidoCollective/han --skill biome-linting
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: biome-linting
Source: https://github.com/TheBushidoCollective/han/tree/main/jutsu/jutsu-biome/skills/biome-linting
Command: npx skills add https://github.com/TheBushidoCollective/han --skill biome-linting

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Apply Biome's linting capabilities to enforce code quality and best practices in JS/TS projects.

Core Features & Use Cases

  • Rule categories for accessibility, correctness, performance, security, and style
  • Practical examples of common lint violations and fixes

Quick Start

Run biome check to identify issues and biome check --write to auto-fix safe problems.

Frequently Asked Questions about biome-linting

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

FAQPage Schema
How do I enforce code quality standards in JavaScript and TypeScript projects?

Biome linting enforces code quality by checking JavaScript and TypeScript files against rules across accessibility, correctness, performance, security, and style categories. Run `biome check` to identify violations across your entire repo or targeted file patterns like `src/**/*.ts`.

Can Biome automatically fix linting issues in my codebase?

Yes, Biome can auto-fix safe violations. Use `biome check --write` to apply automatic fixes to your JavaScript or TypeScript files. The tool distinguishes between safe and unsafe fixes to prevent unintended code changes.

What linting rule categories does Biome support?

Biome supports seven rule categories: Accessibility, Complexity, Correctness, Performance, Security, Style, and Suspicious. These categories cover web standards compliance, code reliability, performance optimization, security vulnerabilities, and code style consistency.

How do I integrate Biome linting into my CI workflow?

Biome supports strict CI enforcement and JSON output for integration into continuous integration pipelines. Run `biome check` in your CI environment to enforce lint checks on pull requests or commits, with optional reporting formats for automated systems.

Does Biome work with both web applications and libraries?

Yes, Biome linting applies to web applications, libraries, and CI workflows. It runs on entire repositories or specific file patterns, making it suitable for projects of varying scope and structure.