mirror of
https://github.com/MeshEnvy/mesh-forge.git
synced 2026-03-28 17:42:55 +01:00
75 lines
1.3 KiB
JSON
75 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.7/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"includes": [
|
|
"src/**",
|
|
"convex/**",
|
|
"*.json",
|
|
"!vendor",
|
|
"!convex/_generated"
|
|
]
|
|
},
|
|
"css": {
|
|
"parser": {
|
|
"tailwindDirectives": true
|
|
},
|
|
"linter": {
|
|
"enabled": false
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "tab"
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"correctness": {
|
|
"noUnusedImports": {
|
|
"level": "warn",
|
|
"fix": "safe"
|
|
},
|
|
"noUnusedVariables": {
|
|
"level": "warn",
|
|
"fix": "safe"
|
|
},
|
|
"noUnusedFunctionParameters": {
|
|
"level": "warn",
|
|
"fix": "safe"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"quoteProperties": "asNeeded",
|
|
"semicolons": "asNeeded",
|
|
"trailingCommas": "es5"
|
|
}
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
},
|
|
"json": {
|
|
"formatter": {
|
|
"trailingCommas": "none",
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
}
|
|
}
|
|
}
|