Skip to content

Commit

Permalink
chore: update imports order due to lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cat2608 committed Dec 1, 2023
1 parent 37c69cc commit c6cb40c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/snyk/common/languageServer/staticLsApi.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import axios, { CancelTokenSource } from 'axios';
import { IConfiguration } from '../configuration/configuration';
import { PROTOCOL_VERSION } from '../constants/languageServer';
import { LsExecutable } from './lsExecutable';
import { LsSupportedPlatform } from './supportedPlatforms';
import { getAxiosConfig } from '../proxy';
import { IVSCodeWorkspace } from '../vscode/workspace';
import { DownloadAxiosResponse } from '../download/downloader';
import { IConfiguration } from '../configuration/configuration';
import { ILog } from '../logger/interfaces';
import { getAxiosConfig } from '../proxy';
import { IVSCodeWorkspace } from '../vscode/workspace';
import { LsExecutable } from './lsExecutable';
import { LsSupportedPlatform } from './supportedPlatforms';

export type LsMetadata = {
tag: string;
Expand Down
2 changes: 1 addition & 1 deletion src/snyk/common/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import fs from 'fs/promises';
import { Agent, AgentOptions, globalAgent } from 'https';
import { HttpsProxyAgent, HttpsProxyAgentOptions } from 'https-proxy-agent';
import * as url from 'url';
import { IVSCodeWorkspace } from './vscode/workspace';
import { IConfiguration } from './configuration/configuration';
import { ILog } from './logger/interfaces';
import { IVSCodeWorkspace } from './vscode/workspace';

export async function getHttpsProxyAgent(
workspace: IVSCodeWorkspace,
Expand Down

0 comments on commit c6cb40c

Please sign in to comment.