mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-04-24 05:50:21 -05:00
29 lines
426 B
JavaScript
29 lines
426 B
JavaScript
module.exports = {
|
|
root: true,
|
|
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'@vue/standard'
|
|
],
|
|
|
|
globals: {
|
|
ClientAddonApi: false,
|
|
name: 'off'
|
|
},
|
|
|
|
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',
|
|
},
|
|
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
}
|
|
}
|