mirror of https://github.com/aldy505/code.git
20 lines
262 B
JavaScript
20 lines
262 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true,
|
||
|
},
|
||
|
extends: [
|
||
|
'plugin:vue/strongly-recommended',
|
||
|
'xo-space',
|
||
|
],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 12,
|
||
|
sourceType: 'module',
|
||
|
},
|
||
|
plugins: [
|
||
|
'vue',
|
||
|
],
|
||
|
rules: {
|
||
|
},
|
||
|
};
|