Two teams try and fill in any horizontal, vertical, or diagonal line on a bingo board by playing maps on osu! osu.bingo
osu

fix eslint rules

clxxiii db3dd4e7 b3a80602

+17
+17
eslint.config.js
··· 12 12 prettier, 13 13 ...svelte.configs['flat/prettier'], 14 14 { 15 + rules: { 16 + 'no-undef': ['off'], 17 + '@typescript-eslint/no-unused-vars': [ 18 + 'error', 19 + { 20 + argsIgnorePattern: '^_', 21 + varsIgnorePattern: '^_', 22 + caughtErrorsIgnorePattern: '^_' 23 + } 24 + ] 25 + }, 15 26 languageOptions: { 16 27 globals: { 17 28 ...globals.browser, 18 29 ...globals.node 19 30 } 31 + } 32 + }, 33 + { 34 + files: ['**/*.d.ts'], 35 + rules: { 36 + '@typescript-eslint/no-unused-vars': ['off'] 20 37 } 21 38 }, 22 39 {