seyfert/rome.json
Marcos Susaña 20dc37d9e3
Apply our custom gateway on biscuit (#145)
* feat(ws): new custom ws

* fix(ws): shard reconnect only if property exist
2023-08-13 20:19:04 -04:00

39 lines
569 B
JSON

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