Files
Gabriel Massadas 40615ca5c2 Improve code quality (#67)
* Migrate to biomejs

* Cleanup and add workers-ci method

* Started refactoring worker into hono + chanfana

* Finish api worker refactor

* Lint project

* Lint project
2024-12-05 23:11:01 +00:00

46 lines
747 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": "tab"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off",
"noImplicitAnyLet": "off"
},
"style": {
"noParameterAssign": "off"
},
"complexity": {
"noForEach": "off",
"useLiteralKeys": "off"
},
"performance": {
"noAccumulatingSpread": "off",
"noDelete": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}