11 lines
187 B
TypeScript
11 lines
187 B
TypeScript
|
import createCommand from 'eslint-plugin-command/config';
|
||
|
|
||
|
export async function command() {
|
||
|
return [
|
||
|
{
|
||
|
// @ts-expect-error - no types
|
||
|
...createCommand(),
|
||
|
},
|
||
|
];
|
||
|
}
|