tangled
alpha
login
or
join now
clxxiii.dev
/
osu-bingo
0
fork
atom
Two teams try and fill in any horizontal, vertical, or diagonal line on a bingo board by playing maps on osu!
osu.bingo
osu
0
fork
atom
overview
issues
pulls
pipelines
fix eslint rules
clxxiii
11 months ago
db3dd4e7
b3a80602
+17
1 changed file
expand all
collapse all
unified
split
eslint.config.js
+17
eslint.config.js
···
12
12
prettier,
13
13
...svelte.configs['flat/prettier'],
14
14
{
15
15
+
rules: {
16
16
+
'no-undef': ['off'],
17
17
+
'@typescript-eslint/no-unused-vars': [
18
18
+
'error',
19
19
+
{
20
20
+
argsIgnorePattern: '^_',
21
21
+
varsIgnorePattern: '^_',
22
22
+
caughtErrorsIgnorePattern: '^_'
23
23
+
}
24
24
+
]
25
25
+
},
15
26
languageOptions: {
16
27
globals: {
17
28
...globals.browser,
18
29
...globals.node
19
30
}
31
31
+
}
32
32
+
},
33
33
+
{
34
34
+
files: ['**/*.d.ts'],
35
35
+
rules: {
36
36
+
'@typescript-eslint/no-unused-vars': ['off']
20
37
}
21
38
},
22
39
{