EslintPlugin
EslintPlugin automatically runs eslint --fix to format code after generation.
.keqrc.ts
import { EslintPlugin } from '@keq-request/cli/plugins'
export default defineKeqConfig({
outdir: "./src/apis",
modules: {
catService: "./cat-service-swagger.json",
},
plugins: [new EslintPlugin()],
})