Revert "Add eslint-plugin-vue"

This reverts commit 6479b32063.
This commit is contained in:
KevinNThomas
2021-07-17 17:31:34 -07:00
parent 7548d4a19a
commit ca4c7804e0
11 changed files with 3389 additions and 4903 deletions

View File

@@ -1,21 +0,0 @@
module.exports = {
root: true,
env: {
node: true
},
parserOptions: {
ecmaVersion: 2020
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
},
extends: [
'plugin:vue/essential',
'@vue/standard'
]
}