26 lines
408 B
JavaScript
26 lines
408 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
},
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
mocha: true
|
|
},
|
|
"globals": {
|
|
"expect": true
|
|
},
|
|
extends: [
|
|
'plugin:vue/recommended',
|
|
'standard'
|
|
],
|
|
plugins: [
|
|
'vue'
|
|
],
|
|
rules: {
|
|
'generator-star-spacing': 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
|
}
|
|
}
|