get-express-starter
Version:
Get production ready express boilerplate with a single command
41 lines (40 loc) • 910 B
JSON
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"formatter": {
"indentStyle": "space",
"lineWidth": 120,
"lineEnding": "lf"
},
"organizeImports": { "enabled": true },
"javascript": {
"formatter": {
"quoteStyle": "single"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnsafeFinally": "error"
},
"suspicious": {
"noExplicitAny": "off",
"noConfusingVoidType": "warn",
"noDuplicateObjectKeys": "error",
"noDuplicateCase": "error",
"noAssignInExpressions": "off"
},
"style": {
"noUselessElse": "warn",
"noVar": "error",
"useConst": "error",
"noNonNullAssertion": "off"
},
"complexity": {
"noForEach": "off",
"noExcessiveCognitiveComplexity": "warn"
}
}
}
}