Blog Image

コードがスッキリするbiome.jsonのソースを晒す

2024/06/07に公開/更新

hayato

#Web開発

#JS

目次

公式の設定リファレンス

設定はデフォルト値と重複していても全て書き出しています。

お好みでどうぞな値

  • indentWidth

  • lineWidth

ソース

{ "$schema": "https://biomejs.dev/schemas/1.7.0/schema.json", "organizeImports": { "enabled": true }, "formatter": { "enabled": true, "formatWithErrors": true, "indentStyle": "space", "indentWidth": 2 }, "linter": { "enabled": true, "rules": { "recommended": true } }, "javascript": { "parser": { "unsafeParameterDecoratorsEnabled": true }, "formatter": { "quoteStyle": "single", "jsxQuoteStyle": "single", "quoteProperties": "asNeeded", "trailingComma": "none", "semicolons": "asNeeded", "arrowParentheses": "asNeeded", "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineEnding": "lf", "lineWidth": 100, "bracketSameLine": true, "bracketSpacing": true, "attributePosition": "auto" } }, "json": { "parser": { "allowComments": true, "allowTrailingCommas": true }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineEnding": "lf", "lineWidth": 100, "trailingCommas": "none" } } }