Biome linter/formatter setup. Use when configuring Biome as an alternative to ESLint + Prettier.
/plugin marketplace add IvanTorresEdge/molcajete.ai/plugin install ivantorresedge-js-tech-stacks-js-common@IvanTorresEdge/molcajete.aiThis skill inherits all available tools. When active, it can use any tool Claude has access to.
This skill covers Biome configuration for TypeScript projects as an alternative to ESLint + Prettier.
Use this skill when:
ONE TOOL, ZERO DEPENDENCIES - Biome replaces both ESLint and Prettier with 10-100x better performance.
npm install -D @biomejs/biome
{
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "error",
"noImplicitAnyLet": "error"
},
"correctness": {
"noUnusedVariables": "error",
"noUnusedImports": "error"
},
"style": {
"noNonNullAssertion": "warn",
"useConst": "error",
"useTemplate": "error"
},
"complexity": {
"noBannedTypes": "error",
"noUselessTypeConstraint": "error"
}
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"semicolons": "always",
"quoteStyle": "single",
"trailingCommas": "all",
"arrowParentheses": "always"
}
},
"files": {
"ignore": ["node_modules", "dist", "coverage"]
}
}
{
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format ."
}
}
{
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "error",
"noImplicitAnyLet": "error",
"noConfusingVoidType": "error",
"noAsyncPromiseExecutor": "error"
}
}
}
}
noExplicitAny:
// ❌ Error
function process(data: any) { }
// ✅ OK
function process(data: unknown) { }
noImplicitAnyLet:
// ❌ Error
let value; // implicit any
// ✅ OK
let value: string;
let value: unknown;
{
"linter": {
"rules": {
"correctness": {
"noUnusedVariables": "error",
"noUnusedImports": "error",
"noConstantCondition": "error",
"noUndeclaredVariables": "error"
}
}
}
}
{
"linter": {
"rules": {
"style": {
"useConst": "error",
"useTemplate": "error",
"noVar": "error",
"useShorthandFunctionType": "error",
"useExportType": "error",
"useImportType": "error"
}
}
}
}
useExportType / useImportType:
// ❌ Error - using value import for type
import { User } from './types';
export { User };
// ✅ OK - type-only imports/exports
import type { User } from './types';
export type { User };
{
"javascript": {
"formatter": {
"semicolons": "always",
"quoteStyle": "single",
"jsxQuoteStyle": "double",
"trailingCommas": "all",
"arrowParentheses": "always",
"bracketSpacing": true,
"bracketSameLine": false
}
}
}
{
"json": {
"formatter": {
"trailingCommas": "none"
}
}
}
{
"overrides": [
{
"include": ["**/*.test.ts", "**/*.test.tsx"],
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "off"
}
}
}
},
{
"include": ["*.config.js", "*.config.ts"],
"linter": {
"rules": {
"style": {
"noDefaultExport": "off"
}
}
}
}
]
}
Install "Biome" extension from VS Code marketplace.
{
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
# Check all files
biome check .
# Check and fix
biome check --write .
# Check specific files
biome check src/
# Check with specific rules
biome check --diagnostic-level=error .
# Check formatting
biome format .
# Apply formatting
biome format --write .
# Format specific files
biome format --write src/**/*.ts
# Check only (exit non-zero on issues)
biome ci .
npm uninstall eslint prettier eslint-config-prettier @typescript-eslint/eslint-plugin @typescript-eslint/parser
npm install -D @biomejs/biome
npx biome init
{
"scripts": {
"lint": "biome check .",
"format": "biome format --write ."
}
}
rm .eslintrc.json .eslintrc.js .prettierrc .prettierignore
| ESLint Rule | Biome Rule |
|---|---|
@typescript-eslint/no-explicit-any | suspicious/noExplicitAny |
@typescript-eslint/no-unused-vars | correctness/noUnusedVariables |
no-var | style/noVar |
prefer-const | style/useConst |
prefer-template | style/useTemplate |
Biome does not support:
Use ESLint if you need:
{
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"biome check --write --no-errors-on-unmatched"
]
}
}
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: npm ci
- run: npx biome ci .
biome ci in CI pipelinesbiome ciThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.