fix: dbkv raw import (#1848)

This commit is contained in:
Daniel Salazar
2025-10-28 13:04:54 -07:00
committed by GitHub
parent b1e3430a9d
commit ff9932b2f3
3 changed files with 19 additions and 10 deletions

View File

@@ -110,7 +110,13 @@ export default defineConfig([
'src/backend/**/*.{js,mjs,cjs,ts}',
'extensions/**/*.{js,mjs,cjs,ts}',
],
languageOptions: { globals: globals.browser },
languageOptions: {
globals: {
...globals.browser,
...globals.jquery,
i18n: 'readonly',
},
},
rules: {
'no-unused-vars': ['error', {
@@ -157,7 +163,13 @@ export default defineConfig([
{
files: ['**/*.{js,mjs,cjs,ts}'],
ignores: ['src/backend/**/*.{js,mjs,cjs,ts}'],
languageOptions: { globals: globals.browser },
languageOptions: {
globals: {
...globals.browser,
...globals.jquery,
i18n: 'readonly',
},
},
rules: {
'no-unused-vars': ['error', {
'vars': 'all',