13 lines
170 B
JavaScript
13 lines
170 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
parserOptions: {
|
||
|
|
sourceType: 'module'
|
||
|
|
},
|
||
|
|
|
||
|
|
extends: 'standard',
|
||
|
|
// required to lint *.vue files
|
||
|
|
plugins: [
|
||
|
|
'html'
|
||
|
|
]
|
||
|
|
}
|