1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| const task = {
| match: /vue-cli-service lint/,
| description: 'org.vue.eslint.tasks.lint.description',
| link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint#injected-commands',
| prompts: [
| {
| name: 'noFix',
| type: 'confirm',
| default: false,
| description: 'org.vue.eslint.tasks.lint.noFix'
| }
| ],
| onBeforeRun: ({ answers, args }) => {
| if (answers.noFix) args.push('--no-fix')
| }
| }
|
| module.exports = {
| task
| }
|
|