9ba713b910
Add biome as TS linter and formatter. Also added the config files for biome
49 lines
879 B
JSON
49 lines
879 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
"vcs": {
|
|
"enabled": false,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": false
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"ignore": []
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"lineWidth": 80,
|
|
"indentWidth": 2
|
|
},
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"performance": {
|
|
"all": true
|
|
},
|
|
"security": {
|
|
"all": true
|
|
},
|
|
"style": {
|
|
"all": true,
|
|
"noDefaultExport": "off",
|
|
"useFilenamingConvention": {
|
|
"level": "error",
|
|
"options": {
|
|
"filenameCases": ["kebab-case"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double"
|
|
}
|
|
}
|
|
}
|