Resolve violations of sort-imports lint

Resolves #206
This commit is contained in:
Chris Raynor 2020-09-29 14:43:37 +01:00
parent bb6fa8ee6d
commit 228546a1e5
No known key found for this signature in database
GPG key ID: 579A1FBC36FDA261
87 changed files with 273 additions and 243 deletions

View file

@ -1,18 +1,19 @@
import { Command } from "commander";
import * as fs from "fs";
import * as os from "os";
import * as path from "path";
import * as upload_lib from "./upload-lib";
import { runAnalyze } from "./analyze";
import { determineAutobuildLanguage, runAutobuild } from "./autobuild";
import { CodeQL, getCodeQL } from "./codeql";
import { Config, getConfig } from "./config-utils";
import { initCodeQL, initConfig, injectWindowsTracer, runInit } from "./init";
import { Language, parseLanguage } from "./languages";
import { determineAutobuildLanguage, runAutobuild } from "./autobuild";
import { getAddSnippetsFlag, getMemoryFlag, getThreadsFlag } from "./util";
import { initCodeQL, initConfig, injectWindowsTracer, runInit } from "./init";
import { Command } from "commander";
import { getRunnerLogger } from "./logging";
import { parseRepositoryNwo } from "./repository";
import * as upload_lib from "./upload-lib";
import { getAddSnippetsFlag, getMemoryFlag, getThreadsFlag } from "./util";
import { runAnalyze } from "./analyze";
const program = new Command();
program.version("0.0.1");