fix js linter errors

This commit is contained in:
rash
2026-03-13 15:39:10 +01:00
parent e62bed7092
commit c62a6359e1
6 changed files with 27 additions and 6 deletions

View File

@@ -83,5 +83,26 @@ export default defineConfig([
'@stylistic/generator-star-spacing': 0,
'@stylistic/yield-star-spacing': ['error', 'after'],
},
}
},
{
files: [
'src/pretix/static/pretixcontrol/js/ui/checkinrules/**/*.vue',
'src/pretix/plugins/webcheckin/**/*.vue',
],
languageOptions: {
globals: {
moment: 'readonly',
},
},
},
{
files: [
'src/pretix/static/pretixpresale/widget/**/*.{ts,vue}',
],
languageOptions: {
globals: {
LANG: 'readonly',
},
},
},
])