nyvora.app/biome.jsonc
2025-05-04 23:56:09 -06:00

42 lines
869 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignore": ["**/dist/**", ".github/**"],
"include": ["**/**", "server/**"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indendWidth": 4,
"lineWidth": 100,
"ignore": ["pnpm-lock.yaml", "package.json"]
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": false
},
"javascript": {
"formatter": {
"trailingCommas": "none"
"quoteStyle": "double",
"semicolons": "always"
}
},
"json": {
"parser": {
"allowComments": true,
"allowTrailingCommas": true
},
"formatter": {
"indentSyle": "space",
"trailingCommas": "none"
}
}
}