biome
スター11
フォーク1
更新日2026年4月5日 15:06
Biome JavaScript/TypeScript linter and formatter
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Biome JavaScript/TypeScript linter and formatter
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Hono lightweight web framework on Cloudflare Workers
Cloudflare Workers edge computing platform
Laravel PHP framework best practices
MySQL database best practices and query patterns
Next.js with React 19 App Router patterns
React with TypeScript best practices
| name | biome |
| description | Biome JavaScript/TypeScript linter and formatter |
| model | inherit |
| triggers | [{"file_pattern":"biome.json"},{"file_pattern":"biome.jsonc"}] |
Configure and use Biome for fast JavaScript/TypeScript linting and formatting.
If biome.json or biome.jsonc exists in the project:
biome.json or biome.jsonc for configurationbiome migrate from ESLint/Prettier configsbiome check for lint + format in CI{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedVariables": "error"
}
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
}
}
# Check lint and format
biome check .
# Check with auto-fix
biome check --apply .
# Format only
biome format --write .
# Lint only
biome lint --apply .
/typescript - TypeScript best practices/react - React patterns that Biome enforces