seyfert/biome.json
socram03 02b8bd0d28 fix(ws): gateway resume now it works correctly
feat(ws): more usesfull methods in sharder
fix(helpers): data arrays fixed
ci: change rome to biome

Co-authored-by: MARCROCK22 <MARCROCK22@users.noreply.github.com>
2023-11-08 20:16:28 -04:00

36 lines
522 B
JSON

{
"linter": {
"enabled": true,
"rules": {
"all": true,
"style": {
"useWhile": "off",
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "off",
"noAssignInExpressions": "off"
}
}
},
"formatter": {
"enabled": true,
"indentWidth": 2,
"indentStyle": "space",
"lineWidth": 140,
"formatWithErrors": true
},
"files": {
"ignore": [
"node_modules/",
"build",
"dist",
"tsup.config.ts",
"__test__"
]
},
"organizeImports": {
"enabled": true
}
}