Files
sqwerk/biome.json
T
Rodney Osodo 9ba713b910 style(biome): add TS linter
Add biome as TS linter and formatter. Also added the config files for biome
2025-06-11 09:42:38 +03:00

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"
}
}
}