npm install --save-dev --save-exact @biomejs/biome
npx @biomejs/biome init
package.json に追加する
"lint:biome": "biome lint -- apply ./src",
"format": "biome format ./src --write",
"check": "biome check --apply ./src"
デフォルトから設定を追加した方がいいところを記述していきます。
・定義されていない変数を使っているときにエラーを出す
"rules": {
"recommended": true,
"correctness": {
"noUndeclaredVariables": "error"
}
}
・シングルクォーテーションを使う
{
"javascript": {
"formatter": {
"quoteStyle": "single",
"jsxQuoteStyle": "single"
}
}
}