Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"formatter": {
"enabled": true,
"formatWithErrors": false,
"includes": ["**", "!package.json"],
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

특정 파일을 제외할 때는 includes 필드에서 부정 패턴(!)을 사용하는 것보다 ignore 필드를 사용하는 것이 더 명확하고 권장되는 방식입니다. includes**를 다시 선언하는 것은 전역 files.includes 설정과 중복될 수 있으며, ignore를 사용하면 전역 포함 로직을 건드리지 않고 특정 파일만 안전하게 제외할 수 있습니다.

Suggested change
"includes": ["**", "!package.json"],
"ignore": ["package.json"],

"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
Expand Down