Skip to content

Commit

Permalink
chore: do not use shared biome.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiefORZ committed Dec 4, 2023
1 parent 2d82287 commit 994f5f7
Showing 1 changed file with 37 additions and 4 deletions.
41 changes: 37 additions & 4 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,39 @@
{
"$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
"extends": [
"./node_modules/@chieforz/biome-config/lib/biome.json"
]
}
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": false
},
"files": {
"ignoreUnknown": true
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100,
"ignore": ["**/.next", "**/.wireit", "**/build", "**/dist", "**/node_modules"]
},
"javascript": {
"formatter": {
"enabled": true,
"quoteStyle": "single",
"arrowParentheses": "always",
"trailingComma": "all",
"lineEnding": "lf"
}
},
"json": {
"formatter": {
"enabled": true
}
}
}

0 comments on commit 994f5f7

Please sign in to comment.