Frontend2025년 11월 1일1분 읽기

Biome — ESLint + Prettier 대안의 올인원 도구

YS
YoungSam
조회 1555

왜 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
BiomeLintingFormatting

댓글 0

아직 댓글이 없습니다.