mirror of
https://github.com/versia-pub/server.git
synced 2026-04-27 20:59:15 +02:00
chore: ⬆️ Upgrade dependencies
Some checks failed
Build Docker Images / check (push) Failing after 6s
CodeQL Scan / Analyze (javascript-typescript) (push) Failing after 0s
Build Docker Images / tests (push) Failing after 6s
Deploy Docs to GitHub Pages / build (push) Failing after 0s
Build Docker Images / build (server, Dockerfile, ${{ github.repository_owner }}/server) (push) Has been skipped
Build Docker Images / build (worker, Worker.Dockerfile, ${{ github.repository_owner }}/worker) (push) Has been skipped
Deploy Docs to GitHub Pages / Deploy (push) Has been skipped
Mirror to Codeberg / Mirror (push) Failing after 0s
Nix Build / check (push) Failing after 0s
Test Publish / build (client) (push) Failing after 0s
Test Publish / build (sdk) (push) Failing after 0s
Build Docker Images / lint (push) Failing after 6s
Some checks failed
Build Docker Images / check (push) Failing after 6s
CodeQL Scan / Analyze (javascript-typescript) (push) Failing after 0s
Build Docker Images / tests (push) Failing after 6s
Deploy Docs to GitHub Pages / build (push) Failing after 0s
Build Docker Images / build (server, Dockerfile, ${{ github.repository_owner }}/server) (push) Has been skipped
Build Docker Images / build (worker, Worker.Dockerfile, ${{ github.repository_owner }}/worker) (push) Has been skipped
Deploy Docs to GitHub Pages / Deploy (push) Has been skipped
Mirror to Codeberg / Mirror (push) Failing after 0s
Nix Build / check (push) Failing after 0s
Test Publish / build (client) (push) Failing after 0s
Test Publish / build (sdk) (push) Failing after 0s
Build Docker Images / lint (push) Failing after 6s
This commit is contained in:
parent
99a7658956
commit
70974d3c35
6 changed files with 279 additions and 280 deletions
74
biome.json
74
biome.json
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"$schema": "https://biomejs.dev/schemas/2.0.0-beta.1/schema.json",
|
||||
"$schema": "https://biomejs.dev/schemas/2.0.0-beta.5/schema.json",
|
||||
"assist": {
|
||||
"actions": {
|
||||
"source": {
|
||||
|
|
@ -7,6 +7,11 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"vcs": {
|
||||
"clientKind": "git",
|
||||
"enabled": true,
|
||||
"useIgnoreFile": true
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
"rules": {
|
||||
|
|
@ -64,24 +69,40 @@
|
|||
"useThrowOnlyError": "error",
|
||||
"useNodejsImportProtocol": "error",
|
||||
"useAsConstAssertion": "error",
|
||||
"useNumericLiterals": "error",
|
||||
"useEnumInitializers": "error",
|
||||
"useSelfClosingElements": "error",
|
||||
"useConst": "error",
|
||||
"useSingleVarDeclarator": "error",
|
||||
"noUnusedTemplateLiteral": "error",
|
||||
"useNumberNamespace": "error",
|
||||
"useAtIndex": "warn",
|
||||
"noInferrableTypes": "error",
|
||||
"useCollapsedIf": "warn",
|
||||
"useExponentiationOperator": "error",
|
||||
"useTemplate": "error",
|
||||
"noParameterAssign": "error",
|
||||
"noNonNullAssertion": "error",
|
||||
"useDefaultParameterLast": "error",
|
||||
"useConsistentMemberAccessibility": {
|
||||
"level": "warn",
|
||||
"options": {
|
||||
"accessibility": "explicit"
|
||||
}
|
||||
},
|
||||
"noArguments": "error",
|
||||
"useImportType": "error",
|
||||
"useExportType": "error",
|
||||
"noUselessElse": "error",
|
||||
"useShorthandFunctionType": "error"
|
||||
"noProcessEnv": "error",
|
||||
"useShorthandFunctionType": "error",
|
||||
"useArrayLiterals": "error",
|
||||
"noCommonJs": "warn",
|
||||
"noExportedImports": "warn",
|
||||
"noSubstr": "warn",
|
||||
"useTrimStartEnd": "warn"
|
||||
},
|
||||
"performance": {
|
||||
"noDynamicNamespaceImportAccess": "warn"
|
||||
},
|
||||
"correctness": {
|
||||
"useImportExtensions": "error",
|
||||
|
|
@ -89,57 +110,43 @@
|
|||
"noUndeclaredDependencies": "error",
|
||||
"noUnusedFunctionParameters": "error",
|
||||
"noUnusedImports": "error",
|
||||
"noUnusedPrivateClassMembers": "error",
|
||||
"useArrayLiterals": "error"
|
||||
"noUnusedPrivateClassMembers": "error"
|
||||
},
|
||||
"nursery": {
|
||||
"noBitwiseOperators": "error",
|
||||
"noConstantBinaryExpression": "error",
|
||||
"noFloatingPromises": "error",
|
||||
"noGlobalDirnameFilename": "error",
|
||||
"noOctalEscape": "error",
|
||||
"noProcessEnv": "error",
|
||||
"noDuplicateElseIf": "warn",
|
||||
"noProcessGlobal": "warn",
|
||||
"noTsIgnore": "warn",
|
||||
"useAtIndex": "warn",
|
||||
"useCollapsedIf": "warn",
|
||||
"useConsistentObjectDefinition": {
|
||||
"level": "warn",
|
||||
"options": {
|
||||
"syntax": "shorthand"
|
||||
}
|
||||
},
|
||||
"useConsistentMemberAccessibility": {
|
||||
"level": "warn",
|
||||
"options": {
|
||||
"accessibility": "explicit"
|
||||
}
|
||||
},
|
||||
"useParseIntRadix": "warn",
|
||||
"noCommonJs": "warn",
|
||||
"noDynamicNamespaceImportAccess": "warn",
|
||||
"noExportedImports": "warn",
|
||||
"noIrregularWhitespace": "warn",
|
||||
"noSubstr": "warn",
|
||||
"noTemplateCurlyInString": "warn",
|
||||
"noUselessEscapeInRegex": "warn",
|
||||
"noUselessStringRaw": "warn",
|
||||
"useAdjacentOverloadSignatures": "warn",
|
||||
"useGuardForIn": "warn",
|
||||
"useTrimStartEnd": "warn"
|
||||
"useParseIntRadix": "warn"
|
||||
},
|
||||
"complexity": {
|
||||
"noForEach": "error",
|
||||
"noUselessStringConcat": "error",
|
||||
"useDateNow": "error",
|
||||
"noUselessStringRaw": "warn",
|
||||
"noUselessEscapeInRegex": "warn",
|
||||
"useSimplifiedLogicExpression": "error",
|
||||
"useWhile": "error"
|
||||
"useWhile": "error",
|
||||
"useNumericLiterals": "error"
|
||||
},
|
||||
"suspicious": {
|
||||
"noDuplicateTestHooks": "error",
|
||||
"noOctalEscape": "error",
|
||||
"noTemplateCurlyInString": "warn",
|
||||
"noEmptyBlockStatements": "error",
|
||||
"useAdjacentOverloadSignatures": "warn",
|
||||
"useGuardForIn": "warn",
|
||||
"noDuplicateElseIf": "warn",
|
||||
"noEvolvingTypes": "error",
|
||||
"noIrregularWhitespace": "warn",
|
||||
"noExportsInTest": "error",
|
||||
"noVar": "error",
|
||||
"useAwait": "error",
|
||||
|
|
@ -169,13 +176,6 @@
|
|||
"globals": ["HTMLRewriter", "BufferEncoding"]
|
||||
},
|
||||
"files": {
|
||||
"includes": [
|
||||
"**",
|
||||
"!**/node_modules",
|
||||
"!**/dist",
|
||||
"!**/cache",
|
||||
"!**/build",
|
||||
"!**/result"
|
||||
]
|
||||
"includes": ["**"]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue