{"id":"223188fd-79f6-467e-9460-909ac2079667","shortId":"h5HsEd","kind":"skill","title":"biome","tagline":"Lint and format frontend code with Biome 2.4. Covers type-aware linting, GritQL custom rules, domains, import organizer, and migration from ESLint/Prettier. Use when configuring linting rules, formatting code, writing custom lint rules, or setting up CI checks. Triggers on biome,","description":"# Biome\n\nFast, unified linting, formatting, and import organization for JavaScript, TypeScript, JSX, CSS, and GraphQL. Biome 2.4 provides type-aware linting without the TypeScript compiler, GritQL plugins for custom rules, and domain-based rule grouping. Single binary, zero config by default, 97% Prettier compatibility.\n\n## Critical Rules\n\n### `files.ignore` DOES NOT EXIST - use `files.includes` with negation\n\nBiome 2.x only supports `files.includes` (with an `s`). There is NO `files.ignore`, NO `files.include` (without `s`), NO `files.exclude`. Using any of these will throw `Found an unknown key` errors.\n\nThe only valid keys under `files` are: `includes`, `maxSize`, `ignoreUnknown`, `experimentalScannerIgnores`.\n\nTo exclude files (generated code, vendored files, etc.), use negation patterns in `files.includes`:\n\n```json\n{\n  \"files\": {\n    \"includes\": [\"**\", \"!**/routeTree.gen.ts\", \"!**/generated/**\"]\n  }\n}\n```\n\nDo NOT use `overrides` with `linter/formatter/assists: { enabled: false }` to skip generated files - that approach is fragile (easy to miss a subsystem like assists/import organizer) and unnecessarily complex. Just exclude via `files.includes`.\n\n### Always use `biome check`, not separate lint + format\n\n`biome check` runs formatter, linter, and import organizer in one pass. Never call `biome lint` and `biome format` separately in CI - use `biome check` (or `biome ci` for CI mode).\n\n### biome.json lives at project root\n\nEvery project needs one `biome.json` at the root. Monorepo packages use nested configs with `\"extends\": \"//\"` to inherit from root. Never use relative paths like `\"extends\": [\"../../biome.json\"]`.\n\n### Use `--write` to apply fixes, not `--fix`\n\n```bash\nbiome check --write .            # Apply safe fixes\nbiome check --write --unsafe .   # Apply all fixes (review changes)\n```\n\n### Pin exact versions and migrate after upgrades\n\n```bash\npnpm add --save-dev --save-exact @biomejs/biome@latest\npnpm biome migrate --write\n```\n\n## Quick Start\n\n```bash\npnpm add --save-dev --save-exact @biomejs/biome\npnpm biome init    # Creates default biome.json with recommended rules\n```\n\n### IDE Setup\n\n**VS Code** - Install `biomejs.biome` extension:\n\n```json\n{\n  \"editor.defaultFormatter\": \"biomejs.biome\",\n  \"editor.formatOnSave\": true,\n  \"editor.codeActionsOnSave\": {\n    \"source.organizeImports.biome\": \"explicit\"\n  }\n}\n```\n\n**Zed** - Biome extension available natively. The `inline_config` feature (v2.4) lets editors override rules without affecting `biome.json`:\n\n```json\n{\n  \"formatter\": { \"language_server\": { \"name\": \"biome\" } },\n  \"lsp\": {\n    \"biome\": {\n      \"settings\": {\n        \"inline_config\": {\n          \"linter\": { \"rules\": { \"suspicious\": { \"noConsole\": \"off\" } } }\n        }\n      }\n    }\n  }\n}\n```\n\n### CI Integration\n\n```bash\npnpm biome ci .                                  # No writes, non-zero exit on errors\npnpm biome ci --reporter=default --reporter=github .  # GitHub Actions annotations\n```\n\n## Configuration (biome.json)\n\n### Recommended config for React/TypeScript projects\n\n```json\n{\n  \"$schema\": \"./node_modules/@biomejs/biome/configuration_schema.json\",\n  \"vcs\": {\n    \"enabled\": true,\n    \"clientKind\": \"git\",\n    \"useIgnoreFile\": true\n  },\n  \"files\": {\n    \"includes\": [\n      \"src/**/*.ts\", \"src/**/*.tsx\",\n      \"tests/**/*.ts\", \"**/*.config.ts\", \"**/*.json\",\n      \"!**/generated\", \"!**/components/ui\"\n    ]\n  },\n  \"formatter\": {\n    \"enabled\": true,\n    \"indentStyle\": \"space\",\n    \"indentWidth\": 2,\n    \"lineWidth\": 120\n  },\n  \"linter\": {\n    \"enabled\": true,\n    \"rules\": { \"recommended\": true },\n    \"domains\": { \"react\": \"recommended\" }\n  },\n  \"javascript\": {\n    \"formatter\": { \"quoteStyle\": \"double\" }\n  },\n  \"assist\": {\n    \"enabled\": true,\n    \"actions\": {\n      \"source\": { \"organizeImports\": \"on\" }\n    }\n  }\n}\n```\n\n### Formatter options\n\nKey options: `indentStyle` (`\"space\"`/`\"tab\"`), `indentWidth`, `lineWidth`, `lineEnding` (`\"lf\"`/`\"crlf\"`), `trailingNewline`. JS-specific: `quoteStyle`, `trailingCommas`, `semicolons`, `arrowParentheses`, `bracketSpacing`.\n\n### Linter rule configuration\n\nRules use severity levels `\"error\"`, `\"warn\"`, `\"info\"`, or `\"off\"`. Some accept options:\n\n```json\n{\n  \"linter\": {\n    \"rules\": {\n      \"recommended\": true,\n      \"style\": {\n        \"noRestrictedGlobals\": {\n          \"level\": \"error\",\n          \"options\": {\n            \"deniedGlobals\": {\n              \"Buffer\": \"Use Uint8Array for browser compatibility.\"\n            }\n          }\n        },\n        \"useComponentExportOnlyModules\": \"off\"\n      }\n    }\n  }\n}\n```\n\n### Import organizer\n\nThe import organizer (Biome Assist) merges duplicates, sorts by distance, and supports custom grouping:\n\n```json\n{\n  \"assist\": {\n    \"enabled\": true,\n    \"actions\": {\n      \"source\": {\n        \"organizeImports\": {\n          \"level\": \"on\",\n          \"options\": {\n            \"groups\": [\n              { \"source\": \"builtin\" },\n              { \"source\": \"external\" },\n              { \"source\": \"internal\", \"match\": \"@company/*\" },\n              { \"source\": \"relative\" }\n            ]\n          }\n        }\n      }\n    }\n  }\n}\n```\n\n### Per-subsystem includes\n\nEach subsystem (`linter`, `formatter`, `assist`) has its own `includes` for fine-grained scoping. Applied after `files.includes` - can only narrow, not widen.\n\n```json\n{\n  \"files\": {\n    \"includes\": [\"**\", \"!**/dist\"]\n  },\n  \"linter\": {\n    \"includes\": [\"**\", \"!**/components/ui\"]\n  },\n  \"formatter\": {\n    \"includes\": [\"**\", \"!**/components/ui\"]\n  }\n}\n```\n\nThis lints and formats everything except `dist/` and `components/ui`, while assists (import organizer) still run on `components/ui`.\n\n### Overrides\n\nOverrides apply different settings to specific file patterns. Use for per-file rule tweaks (e.g., relaxing rules for vendored/shadcn components). The field is `includes` (with `s`).\n\n```json\n{\n  \"overrides\": [\n    {\n      \"includes\": [\"**/components/ui/**\"],\n      \"linter\": {\n        \"rules\": {\n          \"suspicious\": { \"noDocumentCookie\": \"off\" },\n          \"style\": { \"useComponentExportOnlyModules\": \"off\" }\n        }\n      }\n    },\n    {\n      \"includes\": [\"**/*.test.ts\"],\n      \"linter\": {\n        \"rules\": {\n          \"suspicious\": { \"noConsole\": \"off\" }\n        }\n      }\n    }\n  ]\n}\n```\n\n### Monorepo configuration\n\nRoot `biome.json` holds shared config. Package configs inherit with `\"extends\": \"//\"`:\n\n```json\n{\n  \"$schema\": \"../../node_modules/@biomejs/biome/configuration_schema.json\",\n  \"extends\": \"//\"\n}\n```\n\nOverride specific rules per package by adding a `linter.rules` section alongside `\"extends\": \"//\"`.\n\n### Configuration file discovery (v2.4)\n\nSearch order: `biome.json` -> `biome.jsonc` -> `.biome.json` -> `.biome.jsonc` -> platform config home (`~/.config/biome` on Linux, `~/Library/Application Support/biome` on macOS).\n\n## Domains\n\nDomains group lint rules by technology. Enable only what your stack needs:\n\n```json\n{\n  \"linter\": {\n    \"domains\": {\n      \"react\": \"recommended\",\n      \"next\": \"recommended\",\n      \"test\": \"recommended\",\n      \"types\": \"all\"\n    }\n  }\n}\n```\n\n| Domain | Purpose | Auto-detected |\n|--------|---------|---------------|\n| `react` | React hooks, JSX patterns | `react` dependency |\n| `next` | Next.js-specific rules | `next >= 14.0.0` |\n| `solid` | Solid.js rules | `solid-js` dependency |\n| `test` | Testing best practices (any framework) | - |\n| `playwright` | Playwright test rules | `@playwright/test` |\n| `project` | Cross-file analysis (noImportCycles, noUnresolvedImports) | - |\n| `types` | Type inference rules (noFloatingPromises, noMisusedPromises) | - |\n\n**Activation levels:** `\"recommended\"` (stable rules only), `\"all\"` (includes nursery), `\"none\"` (disable).\n\nThe `project` domain enables rules needing the module graph. The `types` domain (v2.4) enables rules requiring type inference. Both trigger a file scan that adds a small overhead.\n\n## Type-Aware Linting\n\nBiome 2.0 introduced type-aware linting without the TypeScript compiler. Biome has its own type inference engine in Rust - no `typescript` dependency needed.\n\n### How it works\n\nEnable the `types` domain to activate file scanning and type inference. Performance impact is minimal compared to typescript-eslint because inference runs natively.\n\n### Key rules\n\n| Rule | What it catches |\n|------|----------------|\n| `noFloatingPromises` | Unhandled promises (missing await/return/void) |\n| `noMisusedPromises` | Promises in conditionals, array callbacks |\n| `useAwaitThenable` | Awaiting non-thenable values |\n| `noUnnecessaryConditions` | Conditions that are always true/false |\n| `useRegexpExec` | `string.match()` where `regexp.exec()` is better |\n| `useFind` | `array.filter()[0]` instead of `array.find()` |\n| `useArraySortCompare` | `Array.sort()` without compare function |\n\n### noFloatingPromises\n\nThe most impactful type-aware rule. Detects unhandled promises:\n\n```ts\n// ERROR: floating promise\nasync function loadData() {\n  fetch(\"/api/data\");\n}\n\n// VALID: awaited\nasync function loadData() {\n  await fetch(\"/api/data\");\n}\n\n// VALID: explicitly voided (fire-and-forget)\nasync function loadData() {\n  void fetch(\"/api/data\");\n}\n```\n\nDetects ~75% of cases compared to typescript-eslint, improving each release.\n\n### Limitations vs typescript-eslint\n\n- Complex generic type inference may miss some cases\n- Not a full type checker - handles common patterns, not every edge case\n- Rules still in nursery - expect improvements with each release\n- Major performance advantage: fraction of tsc-based linting time\n\n## GritQL Custom Rules\n\nGritQL is a declarative pattern-matching language for custom lint rules. Create `.grit` files and register them as plugins.\n\n```json\n{ \"plugins\": [\"./lint-rules/no-object-assign.grit\"] }\n```\n\n### Examples\n\n**Ban `Object.assign`:**\n\n```grit\n`$fn($args)` where {\n    $fn <: `Object.assign`,\n    register_diagnostic(\n        span = $fn,\n        message = \"Prefer object spread instead of `Object.assign()`\"\n    )\n}\n```\n\n**CSS - enforce color classes:**\n\n```grit\nlanguage css;\n`$selector { $props }` where {\n    $props <: contains `color: $color` as $rule,\n    not $selector <: r\"\\.color-.*\",\n    register_diagnostic(\n        span = $rule,\n        message = \"Don't set explicit colors. Use `.color-*` classes instead.\"\n    )\n}\n```\n\n### Plugin API\n\n`register_diagnostic()` arguments:\n- `severity` - `\"hint\"`, `\"info\"`, `\"warn\"`, `\"error\"` (default: `\"error\"`)\n- `message` (required) - diagnostic message\n- `span` (required) - syntax node to highlight\n\nSupported target languages: JavaScript (default), CSS, JSON (v2.4). Profile with `biome lint --profile-rules .`.\n\n## Suppression Patterns\n\n### Single-line\n\n```ts\n// biome-ignore lint/suspicious/noConsole: needed for debugging\nconsole.log(\"debug info\");\n```\n\n### File-level\n\n```ts\n// biome-ignore-all lint/suspicious/noConsole: logger module\n```\n\n### Range\n\n```ts\n// biome-ignore-start lint/style/useConst: legacy code\nlet x = 1;\nlet y = 2;\n// biome-ignore-end lint/style/useConst\nconst a = 4; // this line IS checked\n```\n\n`biome-ignore-end` is optional - omit to suppress until end of file. Biome requires explanation text after the colon.\n\n## Migration\n\n### From ESLint\n\n```bash\npnpm biome migrate eslint --write\npnpm biome migrate eslint --write --include-inspired  # Include non-identical rules\n```\n\nSupports legacy and flat configs, `extends` resolution, plugins (typescript-eslint, react, jsx-a11y, unicorn), `.eslintignore`.\n\n### From Prettier\n\n```bash\npnpm biome migrate prettier --write\n```\n\nMaps `tabWidth` -> `indentWidth`, `useTabs` -> `indentStyle`, `singleQuote` -> `quoteStyle`, `trailingComma` -> `trailingCommas`.\n\n### From ESLint + Prettier combo\n\n```bash\npnpm biome migrate eslint --write\npnpm biome migrate prettier --write\npnpm remove eslint prettier eslint-config-prettier eslint-plugin-prettier \\\n  @typescript-eslint/parser @typescript-eslint/eslint-plugin\nrm .eslintrc* .prettierrc* .eslintignore .prettierignore\n```\n\nEnable VCS integration since ESLint respects gitignore by default:\n\n```json\n{ \"vcs\": { \"enabled\": true, \"clientKind\": \"git\", \"useIgnoreFile\": true } }\n```\n\n## CLI Reference\n\n### biome check (primary command)\n\n```bash\nbiome check .                    # Check all files\nbiome check --write .            # Apply safe fixes\nbiome check --write --unsafe .   # Apply all fixes\nbiome check --changed .          # Only VCS-changed files\nbiome check --staged .           # Only staged files\n```\n\n### biome ci (CI mode)\n\n```bash\nbiome ci .                                           # No writes, exit code on errors\nbiome ci --reporter=github .                         # GitHub annotations\nbiome ci --reporter=sarif --reporter-file=report.sarif .  # SARIF output\n```\n\n### biome lint\n\n```bash\nbiome lint --only=suspicious/noDebugger .    # Single rule\nbiome lint --skip=project .                  # Skip domain\nbiome lint --only=types .                    # Only type-aware rules\nbiome lint --error-on-warnings .             # Warnings become errors\n```\n\n### Other commands\n\n```bash\nbiome format --write .                       # Format only\nbiome search '`console.$method($args)`' .    # GritQL pattern search\nbiome rage                                   # Debug info for bug reports\nbiome explain noFloatingPromises             # Explain a rule\n```\n\n## Best Practices\n\n1. **Use `biome check` as your single command** - combines format, lint, and import organization\n2. **Start with `recommended: true`** - disable individual rules as needed\n3. **Enable relevant domains** - `react`, `next`, `test`, `types` based on your stack\n4. **Enable VCS integration** - respects `.gitignore`, enables `--changed`/`--staged`\n5. **Use `biome ci` in pipelines** - never writes files, clear exit codes\n6. **Pin exact versions** - avoid surprise rule changes between releases\n7. **Run `biome migrate --write` after every upgrade**\n8. **Use `--staged` in pre-commit hooks**: `biome check --staged --write --no-errors-on-unmatched .`\n9. **Profile slow rules** with `biome lint --profile-rules` (v2.4)\n10. **Use GritQL plugins** for project-specific patterns instead of disabling rules globally\n\n## Gotchas\n\nThese are real mistakes that have caused broken configs, dirty working trees, and wasted debugging time. Read before writing any Biome config.\n\n1. **`files.ignore`, `files.include`, `files.exclude` do not exist.** Only `files.includes` (with `s`). Biome will throw `Found an unknown key` for anything else. See the first critical rule above.\n\n2. **`organizeImports` is NOT a top-level config key.** In Biome 2.x it moved under `assist.actions.source.organizeImports`. Using it at the top level is a config error.\n\n3. **`overrides` that disable `linter` + `formatter` still run `assist`.** If you use overrides to skip a generated file, the import organizer (an assist action) will still rewrite it. This silently dirties your working tree. Use `files.includes` negation to fully exclude a file instead.\n\n4. **`overrides` field is `includes` (with `s`), not `include`.** Same naming as `files.includes`.\n\n5. **`biome check --write` runs formatter + linter + assists in one pass.** Any of these three can modify files. If a generated file keeps getting dirtied after `check --write`, check which subsystem is touching it - it's often the import organizer (assist), not the formatter or linter.\n\n6. **`--fix` does not exist.** The flag is `--write`. `--fix` will silently do nothing or error.\n\n## Resources\n\n- **Biome Docs**: https://biomejs.dev/\n- **Biome GitHub**: https://github.com/biomejs/biome\n- **GritQL Docs**: https://docs.grit.io/\n- **Biome v2 Blog**: https://biomejs.dev/blog/biome-v2/\n- **Biome v2.4 Blog**: https://biomejs.dev/blog/biome-v2-4/\n- **Migration Guide**: https://biomejs.dev/guides/migrate-eslint-prettier/\n- **Rules Reference**: https://biomejs.dev/linter/javascript/rules/\n- **Domains**: https://biomejs.dev/linter/domains/\n- **Plugins**: https://biomejs.dev/linter/plugins/\n\nFor detailed lint rules by category with code examples, see [rules-reference.md](references/rules-reference.md).","tags":["biome","skills","tenequm","agent-skills","ai-agents","claude-code","claude-skills","clawhub","erc-8004","mpp","openclaw","solana"],"capabilities":["skill","source-tenequm","skill-biome","topic-agent-skills","topic-ai-agents","topic-claude-code","topic-claude-skills","topic-clawhub","topic-erc-8004","topic-mpp","topic-openclaw","topic-skills","topic-solana","topic-x402"],"categories":["skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/tenequm/skills/biome","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add tenequm/skills","source_repo":"https://github.com/tenequm/skills","install_from":"skills.sh"}},"qualityScore":"0.461","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 23 github stars · SKILL.md body (15,988 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T01:01:38.978Z","embedding":null,"createdAt":"2026-04-18T23:05:10.113Z","updatedAt":"2026-04-22T01:01:38.978Z","lastSeenAt":"2026-04-22T01:01:38.978Z","tsv":"'/../biome.json':258 '/../node_modules':662 '/.config/biome':690 '/api/data':929,937,950 '/biomejs/biome':1764 '/blog/biome-v2-4/':1779 '/blog/biome-v2/':1773 '/components/ui':426,580,583,632 '/dist':577 '/eslint-plugin':1288 '/generated':158,425 '/guides/migrate-eslint-prettier/':1784 '/library/application':693 '/lint-rules/no-object-assign.grit':1032 '/linter/domains/':1793 '/linter/javascript/rules/':1789 '/linter/plugins/':1797 '/node_modules':406 '/parser':1284 '/routetree.gen.ts':157 '0':901 '1':1162,1443,1583 '10':1546 '120':435 '14.0.0':738 '2':101,433,1165,1457,1610,1622 '2.0':814 '2.4':9,60 '3':1467,1638 '4':1173,1479,1681 '5':1488,1694 '6':1500,1740 '7':1510 '75':952 '8':1518 '9':1535 '97':87 'a11y':1234 'accept':490 'action':395,452,531,1661 'activ':770,845 'ad':671 'add':291,308,805 'advantag':999 'affect':355 'alongsid':675 'alway':190,891 'analysi':761 'annot':396,1368 'anyth':1602 'api':1088 'appli':262,270,277,566,603,1326,1333 'approach':172 'arg':1038,1424 'argument':1091 'array':879 'array.filter':900 'array.find':904 'array.sort':906 'arrowparenthes':475 'assist':449,517,528,556,594,1646,1660,1701,1734 'assist.actions.source.organizeimports':1627 'assists/import':181 'async':925,932,945 'auto':724 'auto-detect':723 'avail':343 'avoid':1504 'await':882,931,935 'await/return/void':874 'awar':13,64,811,818,916,1401 'ban':1034 'base':78,1004,1475 'bash':266,289,306,375,1201,1239,1258,1317,1354,1381,1414 'becom':1410 'best':748,1441 'better':898 'binari':82 'biom':1,8,43,44,59,100,192,198,211,214,220,223,267,273,301,317,341,362,364,377,388,516,813,824,1119,1131,1145,1154,1167,1179,1191,1203,1208,1241,1260,1265,1313,1318,1323,1329,1336,1344,1350,1355,1363,1369,1379,1382,1388,1394,1403,1415,1420,1428,1435,1445,1490,1512,1526,1540,1581,1594,1621,1695,1757,1760,1768,1774 'biome-ignor':1130 'biome-ignore-al':1144 'biome-ignore-end':1166,1178 'biome-ignore-start':1153 'biome.json':228,237,321,356,398,651,683,685 'biome.jsonc':684,686 'biomejs.biome':330,334 'biomejs.dev':1759,1772,1778,1783,1788,1792,1796 'biomejs.dev/blog/biome-v2-4/':1777 'biomejs.dev/blog/biome-v2/':1771 'biomejs.dev/guides/migrate-eslint-prettier/':1782 'biomejs.dev/linter/domains/':1791 'biomejs.dev/linter/javascript/rules/':1787 'biomejs.dev/linter/plugins/':1795 'biomejs/biome':298,315 'biomejs/biome/configuration_schema.json':407,663 'blog':1770,1776 'bracketspac':476 'broken':1568 'browser':507 'buffer':503 'bug':1433 'builtin':539 'call':210 'callback':880 'case':954,975,987 'catch':869 'categori':1803 'caus':1567 'chang':281,1338,1342,1486,1507 'check':40,193,199,221,268,274,1177,1314,1319,1320,1324,1330,1337,1345,1446,1527,1696,1720,1722 'checker':980 'ci':39,218,224,226,373,378,389,1351,1352,1356,1364,1370,1491 'class':1056,1085 'clear':1497 'cli':1311 'clientkind':411,1307 'code':6,31,145,328,1159,1360,1499,1805 'colon':1197 'color':1055,1065,1066,1072,1082,1084 'combin':1451 'combo':1257 'command':1316,1413,1450 'commit':1524 'common':982 'compani':545 'compar':855,908,955 'compat':89,508 'compil':69,823 'complex':185,968 'compon':622 'components/ui':592,600 'condit':878,888 'config':84,245,347,367,400,654,656,688,1224,1275,1569,1582,1618,1636 'config.ts':423 'configur':27,397,479,649,677 'consol':1422 'console.log':1137 'const':1171 'contain':1064 'cover':10 'creat':319,1022 'critic':90,1607 'crlf':467 'cross':759 'cross-fil':758 'css':56,1053,1059,1114 'custom':16,33,73,525,1008,1019 'debug':1136,1138,1430,1575 'declar':1013 'default':86,320,391,1097,1113,1302 'deniedglob':502 'depend':732,745,835 'detail':1799 'detect':725,918,951 'dev':294,311 'diagnost':1043,1074,1090,1101 'differ':604 'dirti':1570,1668,1718 'disabl':780,1462,1557,1641 'discoveri':679 'dist':590 'distanc':522 'doc':1758,1766 'docs.grit.io':1767 'domain':18,77,442,697,698,712,721,783,792,843,1393,1470,1790 'domain-bas':76 'doubl':448 'duplic':519 'e.g':617 'easi':175 'edg':986 'editor':351 'editor.codeactionsonsave':337 'editor.defaultformatter':333 'editor.formatonsave':335 'els':1603 'enabl':165,409,428,437,450,529,704,784,794,840,1294,1305,1468,1480,1485 'end':1169,1181,1188 'enforc':1054 'engin':830 'error':129,386,484,500,922,1096,1098,1362,1406,1411,1532,1637,1755 'error-on-warn':1405 'eslint':859,959,967,1200,1205,1210,1230,1255,1262,1271,1274,1278,1283,1287,1298 'eslint-config-pretti':1273 'eslint-plugin-pretti':1277 'eslint/prettier':24 'eslintignor':1236,1292 'eslintrc':1290 'etc':148 'everi':233,985,1516 'everyth':588 'exact':283,297,314,1502 'exampl':1033,1806 'except':589 'exclud':142,187,1677 'exist':95,1589,1744 'exit':384,1359,1498 'expect':992 'experimentalscannerignor':140 'explain':1436,1438 'explan':1193 'explicit':339,939,1081 'extend':247,257,659,664,676,1225 'extens':331,342 'extern':541 'fals':166 'fast':45 'featur':348 'fetch':928,936,949 'field':624,1683 'file':135,143,147,155,170,415,575,608,614,678,760,802,846,1024,1141,1190,1322,1343,1349,1375,1496,1655,1679,1711,1715 'file-level':1140 'files.exclude':118,1586 'files.ignore':92,112,1584 'files.include':114,1585 'files.includes':97,105,153,189,568,1591,1673,1693 'fine':563 'fine-grain':562 'fire':942 'fire-and-forget':941 'first':1606 'fix':263,265,272,279,1328,1335,1741,1749 'flag':1746 'flat':1223 'float':923 'fn':1037,1040,1045 'forget':944 'format':4,30,48,197,215,587,1416,1418,1452 'formatt':201,358,427,446,456,555,581,1643,1699,1737 'found':125,1597 'fraction':1000 'fragil':174 'framework':751 'frontend':5 'full':978 'fulli':1676 'function':909,926,933,946 'generat':144,169,1654,1714 'generic':969 'get':1717 'git':412,1308 'github':393,394,1366,1367,1761 'github.com':1763 'github.com/biomejs/biome':1762 'gitignor':1300,1484 'global':1559 'gotcha':1560 'grain':564 'graph':789 'graphql':58 'grit':1023,1036,1057 'gritql':15,70,1007,1010,1425,1548,1765 'group':80,526,537,699 'guid':1781 'handl':981 'highlight':1108 'hint':1093 'hold':652 'home':689 'hook':728,1525 'ide':325 'ident':1218 'ignor':1132,1146,1155,1168,1180 'ignoreunknown':139 'impact':852,913 'import':19,50,204,511,514,595,1455,1657,1732 'improv':960,993 'includ':137,156,416,551,560,576,579,582,626,631,641,777,1213,1215,1685,1689 'include-inspir':1212 'indentstyl':430,460,1249 'indentwidth':432,463,1247 'individu':1463 'infer':766,798,829,850,861,971 'info':486,1094,1139,1431 'inherit':249,657 'init':318 'inlin':346,366 'inspir':1214 'instal':329 'instead':902,1050,1086,1555,1680 'integr':374,1296,1482 'intern':543 'introduc':815 'javascript':53,445,1112 'js':470,744 'js-specif':469 'json':154,332,357,404,424,492,527,574,629,660,710,1030,1115,1303 'jsx':55,729,1233 'jsx-a11y':1232 'keep':1716 'key':128,133,458,864,1600,1619 'languag':359,1017,1058,1111 'latest':299 'legaci':1158,1221 'let':350,1160,1163 'level':483,499,534,771,1142,1617,1633 'lf':466 'like':180,256 'limit':963 'line':1128,1175 'lineend':465 'linewidth':434,464 'lint':2,14,28,34,47,65,196,212,585,700,812,819,1005,1020,1120,1380,1383,1389,1395,1404,1453,1541,1800 'lint/style/useconst':1157,1170 'lint/suspicious/noconsole':1133,1148 'linter':202,368,436,477,493,554,578,633,643,711,1642,1700,1739 'linter.rules':673 'linter/formatter/assists':164 'linux':692 'live':229 'loaddata':927,934,947 'logger':1149 'lsp':363 'maco':696 'major':997 'map':1245 'match':544,1016 'maxsiz':138 'may':972 'merg':518 'messag':1046,1077,1099,1102 'method':1423 'migrat':22,286,302,1198,1204,1209,1242,1261,1266,1513,1780 'minim':854 'miss':177,873,973 'mistak':1564 'mode':227,1353 'modifi':1710 'modul':788,1150 'monorepo':241,648 'move':1625 'name':361,1691 'narrow':571 'nativ':344,863 'need':235,709,786,836,1134,1466 'negat':99,150,1674 'nest':244 'never':209,252,1494 'next':715,733,737,1472 'next.js':734 'no-errors-on-unmatch':1530 'noconsol':371,646 'node':1106 'nodocumentcooki':636 'nofloatingpromis':768,870,910,1437 'noimportcycl':762 'nomisusedpromis':769,875 'non':382,884,1217 'non-ident':1216 'non-then':883 'non-zero':381 'none':779 'norestrictedglob':498 'noth':1753 'nounnecessarycondit':887 'nounresolvedimport':763 'nurseri':778,991 'object':1048 'object.assign':1035,1041,1052 'often':1730 'omit':1184 'one':207,236,1703 'option':457,459,491,501,536,1183 'order':682 'organ':20,51,182,205,512,515,596,1456,1658,1733 'organizeimport':454,533,1611 'output':1378 'overhead':808 'overrid':162,352,601,602,630,665,1639,1650,1682 'packag':242,655,669 'pass':208,1704 'path':255 'pattern':151,609,730,983,1015,1125,1426,1554 'pattern-match':1014 'per':549,613,668 'per-fil':612 'per-subsystem':548 'perform':851,998 'pin':282,1501 'pipelin':1493 'platform':687 'playwright':752,753 'playwright/test':756 'plugin':71,1029,1031,1087,1227,1279,1549,1794 'pnpm':290,300,307,316,376,387,1202,1207,1240,1259,1264,1269 'practic':749,1442 'pre':1523 'pre-commit':1522 'prefer':1047 'prettier':88,1238,1243,1256,1267,1272,1276,1280 'prettierignor':1293 'prettierrc':1291 'primari':1315 'profil':1117,1122,1536,1543 'profile-rul':1121,1542 'project':231,234,403,757,782,1391,1552 'project-specif':1551 'promis':872,876,920,924 'prop':1061,1063 'provid':61 'purpos':722 'quick':304 'quotestyl':447,472,1251 'r':1071 'rage':1429 'rang':1151 'react':443,713,726,727,731,1231,1471 'react/typescript':402 'read':1577 'real':1563 'recommend':323,399,440,444,495,714,716,718,772,1460 'refer':1312,1786 'references/rules-reference.md':1809 'regexp.exec':896 'regist':1026,1042,1073,1089 'relat':254,547 'relax':618 'releas':962,996,1509 'relev':1469 'remov':1270 'report':390,392,1365,1371,1374,1434 'report.sarif':1376 'reporter-fil':1373 'requir':796,1100,1104,1192 'resolut':1226 'resourc':1756 'respect':1299,1483 'review':280 'rewrit':1664 'rm':1289 'root':232,240,251,650 'rule':17,29,35,74,79,91,324,353,369,439,478,480,494,615,619,634,644,667,701,736,741,755,767,774,785,795,865,866,917,988,1009,1021,1068,1076,1123,1219,1387,1402,1440,1464,1506,1538,1544,1558,1608,1785,1801 'rules-reference.md':1808 'run':200,598,862,1511,1645,1698 'rust':832 'safe':271,1327 'sarif':1372,1377 'save':293,296,310,313 'save-dev':292,309 'save-exact':295,312 'scan':803,847 'schema':405,661 'scope':565 'search':681,1421,1427 'section':674 'see':1604,1807 'selector':1060,1070 'semicolon':474 'separ':195,216 'server':360 'set':37,365,605,1080 'setup':326 'sever':482,1092 'share':653 'silent':1667,1751 'sinc':1297 'singl':81,1127,1386,1449 'single-lin':1126 'singlequot':1250 'skill' 'skill-biome' 'skip':168,1390,1392,1652 'slow':1537 'small':807 'solid':739,743 'solid-j':742 'solid.js':740 'sort':520 'sourc':453,532,538,540,542,546 'source-tenequm' 'source.organizeimports.biome':338 'space':431,461 'span':1044,1075,1103 'specif':471,607,666,735,1553 'spread':1049 'src':417,419 'stabl':773 'stack':708,1478 'stage':1346,1348,1487,1520,1528 'start':305,1156,1458 'still':597,989,1644,1663 'string.match':894 'style':497,638 'subsystem':179,550,553,1724 'support':104,524,1109,1220 'support/biome':694 'suppress':1124,1186 'surpris':1505 'suspici':370,635,645 'suspicious/nodebugger':1385 'syntax':1105 'tab':462 'tabwidth':1246 'target':1110 'technolog':703 'test':421,717,746,747,754,1473 'test.ts':642 'text':1194 'thenabl':885 'three':1708 'throw':124,1596 'time':1006,1576 'top':1616,1632 'top-level':1615 'topic-agent-skills' 'topic-ai-agents' 'topic-claude-code' 'topic-claude-skills' 'topic-clawhub' 'topic-erc-8004' 'topic-mpp' 'topic-openclaw' 'topic-skills' 'topic-solana' 'topic-x402' 'touch':1726 'trailingcomma':473,1252,1253 'trailingnewlin':468 'tree':1572,1671 'trigger':41,800 'true':336,410,414,429,438,441,451,496,530,1306,1310,1461 'true/false':892 'ts':418,422,921,1129,1143,1152 'tsc':1003 'tsc-base':1002 'tsx':420 'tweak':616 'type':12,63,719,764,765,791,797,810,817,828,842,849,915,970,979,1397,1400,1474 'type-awar':11,62,809,816,914,1399 'typescript':54,68,822,834,858,958,966,1229,1282,1286 'typescript-eslint':857,957,965,1228,1281,1285 'uint8array':505 'unhandl':871,919 'unicorn':1235 'unifi':46 'unknown':127,1599 'unmatch':1534 'unnecessarili':184 'unsaf':276,1332 'upgrad':288,1517 'use':25,96,119,149,161,191,219,243,253,259,481,504,610,1083,1444,1489,1519,1547,1628,1649,1672 'usearraysortcompar':905 'useawaitthen':881 'usecomponentexportonlymodul':509,639 'usefind':899 'useignorefil':413,1309 'useregexpexec':893 'usetab':1248 'v2':1769 'v2.4':349,680,793,1116,1545,1775 'valid':132,930,938 'valu':886 'vcs':408,1295,1304,1341,1481 'vcs-chang':1340 'vendor':146 'vendored/shadcn':621 'version':284,1503 'via':188 'void':940,948 'vs':327,964 'warn':485,1095,1408,1409 'wast':1574 'widen':573 'without':66,115,354,820,907 'work':839,1571,1670 'write':32,260,269,275,303,380,1206,1211,1244,1263,1268,1325,1331,1358,1417,1495,1514,1529,1579,1697,1721,1748 'x':102,1161,1623 'y':1164 'zed':340 'zero':83,383","prices":[{"id":"9d4f600e-7ca7-4d1c-9695-3bd82cb0decd","listingId":"223188fd-79f6-467e-9460-909ac2079667","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"tenequm","category":"skills","install_from":"skills.sh"},"createdAt":"2026-04-18T23:05:10.113Z"}],"sources":[{"listingId":"223188fd-79f6-467e-9460-909ac2079667","source":"github","sourceId":"tenequm/skills/biome","sourceUrl":"https://github.com/tenequm/skills/tree/main/skills/biome","isPrimary":false,"firstSeenAt":"2026-04-18T23:05:10.113Z","lastSeenAt":"2026-04-22T01:01:38.978Z"}],"details":{"listingId":"223188fd-79f6-467e-9460-909ac2079667","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"tenequm","slug":"biome","github":{"repo":"tenequm/skills","stars":23,"topics":["agent-skills","ai-agents","claude-code","claude-skills","clawhub","erc-8004","mpp","openclaw","skills","solana","x402"],"license":"mit","html_url":"https://github.com/tenequm/skills","pushed_at":"2026-04-14T16:24:57Z","description":"Agent skills for building, shipping, and growing software products","skill_md_sha":"f23e4c0789f254c28b1bc8c1beb79e022b88b17d","skill_md_path":"skills/biome/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/tenequm/skills/tree/main/skills/biome"},"layout":"multi","source":"github","category":"skills","frontmatter":{"name":"biome","description":"Lint and format frontend code with Biome 2.4. Covers type-aware linting, GritQL custom rules, domains, import organizer, and migration from ESLint/Prettier. Use when configuring linting rules, formatting code, writing custom lint rules, or setting up CI checks. Triggers on biome, biome config, biome lint, biome format, biome check, biome ci, gritql, migrate from eslint, migrate from prettier, import sorting, code formatting, lint rules, type-aware linting, noFloatingPromises."},"skills_sh_url":"https://skills.sh/tenequm/skills/biome"},"updatedAt":"2026-04-22T01:01:38.978Z"}}