feat: initialize frontend project with Vite, React, and Biome configuration

This commit is contained in:
Your Name
2026-04-09 13:23:45 +05:30
parent 4bdb1ee80d
commit 6bf186806b
21 changed files with 1248 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false,
"includes": ["frontend/*"],
"experimentalScannerIgnores": [
"**/node_modules/**",
"**/dist/**",
"**/.vite/**"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
}
}