You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
469 B
21 lines
469 B
module.exports = {
|
|
root: true,
|
|
'extends': [
|
|
'plugin:vue/essential',
|
|
'@vue/standard'
|
|
],
|
|
rules: {
|
|
// allow async-await
|
|
'generator-star-spacing': 'off',
|
|
// allow debugger during development
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'vue/no-parsing-error': [2, {
|
|
'x-invalid-end-tag': false
|
|
}],
|
|
'no-undef': 'off',
|
|
'camelcase': 'off'
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
}
|
|
}
|
|
|