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