왜 Biome인가
Biome(구 Rome)은 Rust로 작성된 포매터+린터입니다. ESLint+Prettier 조합 대비 35배 빠릅니다.
설정
// biome.json
{
"formatter": {
"indentStyle": "space",
"indentWidth": 2
},
"linter": {
"enabled": true,
"rules": {
"suspicious": { "noExplicitAny": "warn" },
"complexity": { "noForEach": "error" }
}
}
}사용법
npx @biomejs/biome check --write ./src
npx @biomejs/biome format --write ./src
npx @biomejs/biome lint ./src
댓글 0