mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-04-26 14:58:30 -05:00
24 lines
357 B
JavaScript
24 lines
357 B
JavaScript
module.exports = {
|
|
root: true,
|
|
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'@vue/standard'
|
|
],
|
|
|
|
globals: {
|
|
ClientAddonApi: false
|
|
},
|
|
|
|
plugins: [
|
|
'graphql'
|
|
],
|
|
|
|
rules: {
|
|
'vue/html-self-closing': 'error',
|
|
'vue/no-use-v-if-with-v-for': 'warn',
|
|
'vue/no-unused-vars': 'warn',
|
|
'vue/return-in-computed-property': 'warn',
|
|
}
|
|
}
|