Disable ESLint compat plugin while detection buggy

This commit is contained in:
MrTimscampi 2020-05-07 16:44:33 +02:00
parent 45d8c5bc3a
commit ca4d60c648

View File

@ -42,7 +42,9 @@ module.exports = {
'one-var': ["error", "never"],
'quotes': ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": false }],
'semi': ["error"],
'space-before-blocks': ["error"]
'space-before-blocks': ["error"],
// Disable while it's buggy
'compat/compat': ["off"]
},
overrides: [
{