Switching to import/order instead of sort-imports

This commit is contained in:
Chris Raynor 2020-10-01 11:03:30 +01:00
parent 228546a1e5
commit 122c9b7f24
No known key found for this signature in database
GPG key ID: 579A1FBC36FDA261
84 changed files with 212 additions and 224 deletions

View file

@ -1,15 +1,15 @@
import * as analysisPaths from "./analysis-paths";
import * as configUtils from "./config-utils";
import * as fs from "fs";
import * as path from "path";
import * as toolrunnner from "@actions/exec/lib/toolrunner";
import * as util from "./util";
import * as analysisPaths from "./analysis-paths";
import { CodeQL, setupCodeQL } from "./codeql";
import { TracerConfig, getCombinedTracerConfig } from "./tracer-config";
import * as configUtils from "./config-utils";
import { Logger } from "./logging";
import { RepositoryNwo } from "./repository";
import { TracerConfig, getCombinedTracerConfig } from "./tracer-config";
import * as util from "./util";
export async function initCodeQL(
codeqlURL: string | undefined,