npx claudepluginhub kingstinct/.github --plugin biomeThis skill uses the workspace's default tool permissions.
Biome is used for linting and formatting. The PostToolUse hook automatically runs `biome check --fix` on file changes.
Configures Biome linting and formatting via biome.json or biome.jsonc, troubleshoots diagnostics, sets ignores and overrides, and replaces ESLint/Prettier in JS/TS projects.
Guides Biome 2.4 configuration for linting, formatting, and import organization in JavaScript, TypeScript, JSX, CSS, GraphQL. Covers type-aware linting, GritQL rules, ESLint/Prettier migration, IDE/CI setup.
Provides Biome commands for formatting, linting, and organizing imports in JavaScript, TypeScript, JSX/TSX, JSON, CSS projects. Use for zero-config setup, fast CI checks, or ESLint/Prettier migration.
Share bugs, ideas, or general feedback.
Biome is used for linting and formatting. The PostToolUse hook automatically runs biome check --fix on file changes.
When modifying files, fix both errors AND warnings reported by Biome. Don't leave warnings behind.
After editing a file:
bunx biome check <file> to verify# Check a specific file
bunx biome check path/to/file.ts
# Check and fix a file
bunx biome check --fix path/to/file.ts
# Check entire project
bunx biome check .
# Format only (no linting)
bunx biome format --write path/to/file.ts
# Lint only (no formatting)
bunx biome lint path/to/file.ts
--unsafe flag when appropriate)Biome config is in biome.json or biome.jsonc at project root. Respect project-specific rules.