Merge remote-tracking branch 'origin/release/0.20' into feat/add-otp-plugin

This commit is contained in:
dswbx
2025-11-07 09:50:33 +01:00
4 changed files with 52 additions and 22 deletions

3
.gitignore vendored
View File

@@ -27,7 +27,8 @@ packages/media/.env
.npmrc
/.verdaccio
.idea
.vscode
.vscode/*
!.vscode/settings.json
.git_old
docker/tmp
.debug

19
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"biome.enabled": true,
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "explicit",
"source.fixAll.biome": "explicit"
},
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.autoImportFileExcludePatterns": [
"**/dist/**",
"**/node_modules/**/dist/**",
"**/node_modules/**/!(src|lib|esm)/**" // optional, stricter
],
"typescript.preferences.includePackageJsonAutoImports": "on",
"typescript.tsserver.watchOptions": {
"excludeDirectories": ["**/dist", "**/node_modules/**/dist"]
}
}

12
app/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
"typescript.preferences.includePackageJsonAutoImports": "off",
"typescript.suggest.autoImports": true,
"typescript.preferences.importModuleSpecifier": "relative",
"search.exclude": {
"**/dist/**": true,
"**/node_modules/**": true
},
"files.exclude": {
"**/dist/**": true
}
}

View File

@@ -1,14 +1,13 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
"$schema": "https://biomejs.dev/schemas/2.3.3/schema.json",
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"vcs": {
"defaultBranch": "main"
},
"formatter": {
"enabled": true,
"indentStyle": "space"
"indentStyle": "space",
"formatWithErrors": true
},
"javascript": {
"formatter": {
@@ -30,27 +29,26 @@
}
},
"files": {
"ignore": [
"**/node_modules/**",
"node_modules/**",
"**/.cache/**",
"**/.wrangler/**",
"**/build/**",
"**/dist/**",
"**/data.sqld/**",
"data.sqld/**",
"public/**",
".history/**"
"includes": [
"**",
"!**/node_modules",
"!**/node_modules",
"!**/.cache",
"!**/.wrangler",
"!**/build",
"!**/dist",
"!**/data.sqld",
"!**/data.sqld",
"!**/public",
"!**/.history"
]
},
"linter": {
"enabled": true,
"ignore": ["**/*.spec.ts"],
"includes": ["**"],
"rules": {
"recommended": true,
"a11y": {
"all": false
},
"a11y": {},
"correctness": {
"useExhaustiveDependencies": "off",
"noUnreachable": "warn",
@@ -70,7 +68,7 @@
"noArrayIndexKey": "off",
"noImplicitAnyLet": "warn",
"noConfusingVoidType": "off",
"noConsoleLog": "warn"
"noConsole": { "level": "warn", "options": { "allow": ["log"] } }
},
"security": {
"noDangerouslySetInnerHtml": "off"