Add project files

This commit is contained in:
Kunthawat Greethong
2025-12-05 09:26:53 +07:00
parent 3b43cb52ef
commit 11986a0196
814 changed files with 141076 additions and 1 deletions

59
biome.json Normal file
View File

@@ -0,0 +1,59 @@
{
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json",
"vcs": {
"useIgnoreFile": true
},
"files": {
"ignore": [
"**/static/build/**",
"**/third_party/**",
"third_party/**",
"**/external/**",
"tools/**",
"mesop/**/*.json",
"scripts/**",
"**/esbuild*",
"**/venv/**"
]
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "error"
},
"complexity": {
"useLiteralKeys": "off",
"noForEach": "off"
},
"style": {
"noParameterAssign": "off",
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "off",
"noFallthroughSwitchClause": "off",
"noPrototypeBuiltins": "off",
"noArrayIndexKey": "off"
},
"a11y": {
"useButtonType": "off",
"useIframeTitle": "off",
"noLabelWithoutControl": "off",
"noSvgWithoutTitle": "off"
}
}
},
"formatter": {
"enabled": false
},
"javascript": {
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
}
}