23 lines
349 B
JavaScript
23 lines
349 B
JavaScript
module.export = {
|
|
rout: true,
|
|
env: {
|
|
browser: true,
|
|
node: true
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 6,
|
|
sourceType: "module",
|
|
parser: 'babel-eslint'
|
|
},
|
|
eslintConfig: {
|
|
"parser": "babel-eslint"
|
|
},
|
|
extends: [
|
|
'plugin:vue/recommended'
|
|
],
|
|
plugins: [
|
|
"prettier"
|
|
],
|
|
// 添加自定义规则
|
|
rules: {}
|
|
} |