const linter = new CLIEngine({
fix: program.fix,
ignorePattern: [],
useEslintrc: false,
parser: 'vue-eslint-parser',
parserOptions: {
parser: "babel-eslint",
sourceType: 'module',
},
cwd: process.cwd(),
env: ['browser'],
plugins: [
'vue'
],
rules,
});
eslint从5.x升级到了6.x以后vue-eslint-parser就报错,都是最新版本,大佬帮忙看看我哪个配置写错了呀?