UNPKG

get-express-starter

Version:

Get production ready express boilerplate with a single command

63 lines (62 loc) 1.64 kB
{ "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", "formatter": { "enabled": true, "indentStyle": "space", "lineWidth": 120, "lineEnding": "lf", "indentWidth": 2 }, "javascript": { "formatter": { "quoteStyle": "single", "semicolons": "always", "trailingCommas": "all", "arrowParentheses": "always" } }, "organizeImports": { "enabled": true }, "linter": { "ignore": ["./src/models/plugins/**/*.ts"], "enabled": true, "rules": { "recommended": true, "correctness": { "noUnsafeFinally": "error", "noUnusedImports": "error", "noUnusedFunctionParameters": "error" }, "suspicious": { "noExplicitAny": "warn", "noConfusingVoidType": "warn", "noDuplicateObjectKeys": "error", "noDuplicateCase": "error", "noAssignInExpressions": "off", "noConsole": "warn" }, "style": { "noCommaOperator": "error", "noUselessElse": "error", "noVar": "error", "useConst": "error", "noNonNullAssertion": "off", "noInferrableTypes": "warn", "noParameterAssign": "error", "useThrowOnlyError": "error" }, "complexity": { "noForEach": "off", "noExcessiveCognitiveComplexity": "warn", "noBannedTypes": "warn", "noEmptyTypeParameters": "error", "noUselessTernary": "error", "useOptionalChain": "error" }, "performance": { "noAccumulatingSpread": "error", "noDelete": "warn", "noReExportAll": "error" } } } }