mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 12:36:08 +00:00

* feat: add support for new Discord application emojis features * feat: add support for new Discord application emojis features * feat: applications emojis routes * chore: switch typings provider * fix: unnecesary type * feat: magic bytes * chore: move api-types * chore: ? * fix: omg npm * chore: apply formatting * fix: for fast merge --------- Co-authored-by: Tony Supremacy <165050835+VanStk@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
92 lines
2.0 KiB
JSON
92 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.8.1/schema.json",
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"all": true,
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noAssignInExpressions": "off",
|
|
"noUnsafeDeclarationMerging": "off",
|
|
"noRedeclare": "off",
|
|
"noEmptyInterface": "off",
|
|
"noConfusingVoidType": "off",
|
|
"noImplicitAnyLet": "off",
|
|
"noEmptyBlockStatements": "off",
|
|
"useAwait": "off",
|
|
"noConsoleLog": "off"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "off",
|
|
"noParameterAssign": "off",
|
|
"useExportType": "error",
|
|
"useImportType": "error",
|
|
"useNodejsImportProtocol": "error",
|
|
"useNamingConvention": "off",
|
|
"noParameterProperties": "off",
|
|
"useFilenamingConvention": "off",
|
|
"noDefaultExport": "off",
|
|
"noNamespaceImport": "off",
|
|
"useSingleCaseStatement": "off",
|
|
"useBlockStatements": "off",
|
|
"useEnumInitializers": "off"
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": "off",
|
|
"noNodejsModules": "off"
|
|
},
|
|
"nursery": {
|
|
"useImportRestrictions": "off"
|
|
},
|
|
"complexity": {
|
|
"noUselessLoneBlockStatements": "warn",
|
|
"noBannedTypes": "off",
|
|
"noForEach": "off",
|
|
"noUselessConstructor": "off",
|
|
"noThisInStatic": "off",
|
|
"noExcessiveCognitiveComplexity": "off",
|
|
"noVoid": "off",
|
|
"noStaticOnlyClass": "off"
|
|
},
|
|
"a11y": {
|
|
"all": false
|
|
},
|
|
"performance": {
|
|
"noDelete": "off",
|
|
"noBarrelFile": "off",
|
|
"noReExportAll": "off"
|
|
}
|
|
}
|
|
},
|
|
"json": {
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentWidth": 2,
|
|
"lineWidth": 80
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentWidth": 2,
|
|
"indentStyle": "tab",
|
|
"lineWidth": 120,
|
|
"lineEnding": "crlf",
|
|
"formatWithErrors": true
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"arrowParentheses": "asNeeded",
|
|
"bracketSameLine": true,
|
|
"semicolons": "always"
|
|
}
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": true,
|
|
"ignore": ["node_modules/", "build", "lib", "__test__"]
|
|
},
|
|
"organizeImports": {
|
|
"enabled": false
|
|
}
|
|
}
|