Resolve violations of import/no-extraneous-dependencies lint

Fixes #201
This commit is contained in:
Chris Raynor 2020-09-29 15:03:21 +01:00
parent 228546a1e5
commit 8200c137dc
No known key found for this signature in database
GPG key ID: 579A1FBC36FDA261
6 changed files with 14 additions and 13 deletions

View file

@ -10,14 +10,13 @@ import * as toolcache from "@actions/tool-cache";
import * as toolrunnner from "@actions/exec/lib/toolrunner";
import * as util from "./util";
import uuidV4 from "uuid/v4";
import { IHeaders } from "@actions/http-client/interfaces";
import { Language } from "./languages";
import { Logger } from "./logging";
import { errorMatchers } from "./error-matcher";
import { getRequiredEnvParam } from "./actions-util";
import { toolrunnerErrorCatcher } from "./toolrunner-error-catcher";
import { v4 as uuidV4 } from "uuid";
type Options = Array<string | number | boolean>;