Skip to main content

フォーマッターについて

Biomeを使用して整形をするようにします。

.biome.jsonで原則利用している設定は下記です。

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUndeclaredVariables": "error",
"noUnusedVariables": "error"
},
"nursery": {
"useSortedClasses": "warn"
},
"style": {
"noNamespace": "error"
}
}
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 120,
"ignore": []
}
}

導入方法

npm install --save-dev --save-exact @biomejs/biome
npx @biomejs/biome init
// package.json
"scripts": {
...
"format": "biome check --write *" // 追加
},