command.ts 187 B

12345678910
  1. import createCommand from 'eslint-plugin-command/config';
  2. export async function command() {
  3. return [
  4. {
  5. // @ts-expect-error - no types
  6. ...createCommand(),
  7. },
  8. ];
  9. }