Chore: Skip unnecessary checks on pre commit (#16946)
* Skip unnecessary checks on pre commit * Remove grunt precommit task * Separate go and fe tesrt lint
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
export type TaskRunner<T> = (options: T) => Promise<void>;
|
||||
export type TaskRunner<T> = (options: T) => Promise<any>;
|
||||
|
||||
export class Task<TOptions> {
|
||||
name: string;
|
||||
runner: (options: TOptions) => Promise<void>;
|
||||
runner: (options: TOptions) => Promise<any>;
|
||||
options: TOptions;
|
||||
|
||||
setName = name => {
|
||||
|
||||
Reference in New Issue
Block a user