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 页面并帮你完成安装。
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