Biome設定ジェネレータ
Biome設定ファイル(biome.json)を生成 — フォーマッター設定(インデント、行幅、末尾カンマ)、linterルールプリセット(推奨、厳密、またはオフ)、インポート整理、JavaScript/TypeScript、JSON、CSSの言語別オーバーライド。
入力
"latest"は常に最新のスキーマに解決されます。インストールされたBiomeバージョン(例: "2.4.13")に固定して、エディタがそのバージョンが正確にサポートしているオプションに対して検証するようにしましょう。
フォーマッター
インデントレベルあたりのスペース数 — indentStyleが"space"の場合のみ適用されます。
Linter
単一のアロー関数パラメータの周りの括弧。
出力オプション
出力
このツールを使う他の方法
REST API
curl -X POST https://api.iotools.cloud/v1/tool/biome-config-generator \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"includeSchema": "true",
"schemaVersion": "latest",
"formatterEnabled": "true",
"indentStyle": "tab",
"indentWidth": "2",
"lineWidth": "80",
"lineEnding": "lf",
"linterEnabled": "true",
"linterPreset": "recommended",
"organizeImports": "true",
"quoteStyle": "double",
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": "true",
"bracketSameLine": "",
"jsonFormatterEnabled": "true",
"cssFormatterEnabled": "",
"cssQuoteStyle": "double",
"vcsEnabled": "true",
"vcsUseIgnoreFile": "true",
"includeHeader": "true"
}'ご自身のアカウントのキーに差し替えてください。ツールのフィールドがそのままリクエストボディになります——ラッパーはありません。
AIエージェントに依頼する
Use the IOTools `biome-config-generator` tool (Biome Config Generator) on this input:
YOUR_INPUT_HEREIOTools MCPサーバーに接続された任意のエージェントにこれを貼り付け、入力内容を追加してください。
埋め込みウィジェット
<iframe
src="https://iotools.cloud/embed/biome-config-generator/"
width="100%" height="520" frameborder="0" scrolling="no" loading="lazy"
title="Biome設定ジェネレータ — iotools.cloud"
sandbox="allow-scripts allow-forms allow-same-origin allow-downloads allow-popups allow-popups-to-escape-sandbox"
allow="clipboard-write"
style="width:100%;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden"></iframe>
<script src="https://iotools.cloud/embed.js" async></script>ご自身のページに貼り付けるだけ——無料、キー不要、リンクを掲載するだけです。
| API/MCP 1回あたりの費用 | 5クレジットから |
|---|---|
| クレジットが足りませんか? | 料金を見る |
次の方法でも利用可能
ガイド
The Biome Config Generator builds a ready-to-use biome.json configuration file from a set of toggles and dropdowns — no need to memorize Biome's nested option names or hand-write valid JSON. Pick your formatter, linter, and per-language settings, then copy or download the file straight into your project root.
What it does
Biome is a fast, all-in-one formatter and linter for JavaScript, TypeScript, JSON, and CSS, but its biome.json has many nested sections — formatter, linter, assist, and per-language javascript/json/css overrides — that are easy to get wrong by hand. This tool assembles a complete, valid config for you. It covers:
- Formatter settings —
indentStyle,indentWidth,lineWidth, andlineEnding. - Linter rule preset — Recommended (Biome's balanced default), Strict (every rule, including nursery/experimental), or Off (formatter only).
- Import organization — the
assist.actions.source.organizeImportstoggle that replaces the old standaloneorganizeImportskey. - JavaScript/TypeScript formatting —
quoteStyle,jsxQuoteStyle,quoteProperties,trailingCommas,semicolons,arrowParentheses,bracketSpacing, andbracketSameLine. - JSON and CSS overrides — enable/disable formatting per language (CSS formatting is opt-in in Biome, off by default).
- VCS integration — hooking Biome into your
.gitignoreso it skips ignored files automatically. $schemainclusion — pin it to your installed Biome version, or leave it at"latest", for IDE autocomplete and validation.
How to use it
- Toggle whether to include the
$schemafield, and set a version if you want it pinned to your installed Biome release. - Adjust the formatter settings — indent style/width, line width, and line endings.
- Pick a linter rule preset.
- Set your JavaScript/TypeScript quote style, trailing commas, semicolons, and bracket spacing.
- Toggle JSON/CSS formatting and VCS integration as needed.
- Copy the generated config or download it as
biome.json, and drop it into your project root.
The output updates instantly as you change any option.
Should I pin the schema version or use "latest"?
"latest" always resolves to the newest schema, which is convenient but can drift ahead of the Biome CLI version actually installed in your project — your editor might suggest options your installed version doesn't support yet. Pinning it to your exact installed version (e.g. "2.4.13") keeps IDE validation in sync with what you're actually running.
Why is CSS formatting off by default?
Biome shipped CSS formatting after JS/JSON support matured, and it's still opt-in so existing projects aren't surprised by a sudden reformat of their stylesheets. Turn it on once you've confirmed the output matches your team's expectations.
Does this replace my Prettier/ESLint config?
Only if you're migrating — Biome bundles a formatter and linter that can replace both, but it doesn't read .prettierrc or .eslintrc files. If you're moving from either, see the Prettier Config Generator or ESLint Config Generator for comparison, and Biome's own migration commands to port existing settings.
Privacy
This generator runs entirely in your browser. Your selections are never uploaded, logged, or stored — the configuration is assembled locally from the options you choose, and nothing leaves your device.