1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00

eslint: fix globalThis undef eslint errors

added env.es2020 = true to config so globalThis is recognized
This commit is contained in:
lemonslut 2025-06-07 16:16:25 -06:00
parent a69832e3a3
commit 52598fbe55
No known key found for this signature in database

View file

@ -2,6 +2,7 @@
module.exports = {
'env': {
'browser': true,
'es2020': true,
'es6': true
},
'extends': [
@ -157,4 +158,4 @@ module.exports = {
'react/jsx-uses-react': 'error',
'react/jsx-wrap-multilines': 'error'
}
};
};