Update typescript-eslint monorepo to v5 (major) (#8702)

* Update typescript-eslint monorepo to v5

* Fix linter warnings

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
This commit is contained in:
renovate[bot]
2021-10-12 11:07:46 -04:00
committed by GitHub
parent b0c7fa20bd
commit b2ec182493
8 changed files with 668 additions and 151 deletions

View File

@@ -3,7 +3,7 @@ import { Command, CommandResult, Handler, Settings } from '../command';
import { defaults } from './utils';
import { CLIError, CLIRuntimeError } from './exceptions';
export function command<T extends Toolbox = Toolbox, P = any, R extends any = void>(
export function command<T extends Toolbox = Toolbox, P = any, R = void>(
settings: Settings<P>,
execute: Handler<T, P, R>
): Command<T> {