2026-04-25 15:47:49 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://biomejs.dev/schemas/2.0.0/schema.json",
|
|
|
|
|
"files": {
|
|
|
|
|
"includes": ["main.ts", "src/**/*.ts", "esbuild.config.mjs"]
|
|
|
|
|
},
|
|
|
|
|
"linter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"rules": {
|
|
|
|
|
"recommended": true,
|
|
|
|
|
"suspicious": {
|
2026-04-26 00:59:40 +00:00
|
|
|
"noExplicitAny": "warn",
|
2026-04-25 15:47:49 +00:00
|
|
|
"noRedundantUseStrict": "off",
|
|
|
|
|
"noImplicitAnyLet": "off"
|
|
|
|
|
},
|
|
|
|
|
"style": {
|
|
|
|
|
"noNonNullAssertion": "off",
|
|
|
|
|
"useConst": "warn",
|
|
|
|
|
"useNodejsImportProtocol": "off",
|
|
|
|
|
"useTemplate": "off"
|
|
|
|
|
},
|
|
|
|
|
"complexity": {
|
|
|
|
|
"noForEach": "off"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"formatter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"indentStyle": "space",
|
|
|
|
|
"indentWidth": 2,
|
|
|
|
|
"lineWidth": 120
|
|
|
|
|
},
|
|
|
|
|
"javascript": {
|
|
|
|
|
"formatter": {
|
|
|
|
|
"quoteStyle": "single",
|
|
|
|
|
"semicolons": "always",
|
|
|
|
|
"trailingCommas": "all"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|