Initial open-source release

This commit is contained in:
Will Chen
2025-04-11 09:37:05 -07:00
commit 43f67e0739
208 changed files with 45476 additions and 0 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
}
}
}