admin-vben/internal/lint-configs/eslint-config/src/configs/command.ts

11 lines
187 B
TypeScript
Raw Normal View History

2024-05-19 13:20:42 +00:00
import createCommand from 'eslint-plugin-command/config';
export async function command() {
return [
{
// @ts-expect-error - no types
...createCommand(),
},
];
}