biome
النجوم١١
التفرعات١
آخر تحديث٥ أبريل ٢٠٢٦ في ١٥:٠٦
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