Skip to content

Commit d6172d7

Browse files
authored
feat: 根据eslint配置自动校正
1 parent b2775f0 commit d6172d7

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

generator/index.js

+16-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,19 @@ module.exports = (api, options, rootOptions) => {
1616
// if (options.foo) {
1717
// // 有条件地生成文件
1818
// }
19-
}
19+
20+
// 根据eslint配置自动校正
21+
api.onCreateComplete(() => {
22+
// Linting the generated files
23+
if (api.hasPlugin('eslint')) {
24+
// Lint generated/modified files
25+
try {
26+
const lint = require('@vue/cli-plugin-eslint/lint')
27+
lint({ silent: true }, api)
28+
} catch (e) {
29+
// No ESLint vue-cli plugin
30+
}
31+
}
32+
})
33+
34+
}

0 commit comments

Comments
 (0)