49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import type { CAC } from 'cac';
|
|
|
|
import { execaCommand } from '@vben/node-utils';
|
|
|
|
interface LintCommandOptions {
|
|
/**
|
|
* Format lint problem.
|
|
*/
|
|
format?: boolean;
|
|
}
|
|
|
|
async function runLint({ format }: LintCommandOptions) {
|
|
// process.env.FORCE_COLOR = '3';
|
|
|
|
if (format) {
|
|
await execaCommand(`stylelint "**/*.{vue,css,less,scss}" --cache --fix`, {
|
|
stdio: 'inherit',
|
|
});
|
|
await execaCommand(`eslint . --cache --fix`, {
|
|
stdio: 'inherit',
|
|
});
|
|
await execaCommand(`prettier . --write --cache --log-level warn`, {
|
|
stdio: 'inherit',
|
|
});
|
|
return;
|
|
}
|
|
await Promise.all([
|
|
execaCommand(`eslint . --cache`, {
|
|
stdio: 'inherit',
|
|
}),
|
|
execaCommand(`prettier . --ignore-unknown --check --cache`, {
|
|
stdio: 'inherit',
|
|
}),
|
|
execaCommand(`stylelint "**/*.{vue,css,less,scss}" --cache`, {
|
|
stdio: 'inherit',
|
|
}),
|
|
]);
|
|
}
|
|
|
|
function defineLintCommand(cac: CAC) {
|
|
cac
|
|
.command('lint')
|
|
.usage('Batch execute project lint check.')
|
|
.option('--format', 'Format lint problem.')
|
|
.action(runLint);
|
|
}
|
|
|
|
export { defineLintCommand };
|