14 lines
178 B
JavaScript
14 lines
178 B
JavaScript
|
module.exports = {
|
||
|
'env': {
|
||
|
'browser': true,
|
||
|
'es6': true
|
||
|
},
|
||
|
'extends': [
|
||
|
'eslint:recommended',
|
||
|
'plugin:vue/recommended'
|
||
|
],
|
||
|
'plugins': [
|
||
|
'vue'
|
||
|
]
|
||
|
}
|