Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 4c2c97a

Browse files
committed
fix linting errors
1 parent da6bb20 commit 4c2c97a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ import {
2121
ServerOptions,
2222
} from 'vscode-languageclient';
2323

24-
import * as workspace_util from './workspace_util';
2524
import { RLSConfiguration } from './configuration';
2625
import { SignatureHelpProvider } from './providers/signatureHelpProvider';
2726
import { checkForRls, ensureToolchain, rustupUpdate } from './rustup';
2827
import { startSpinner, stopSpinner } from './spinner';
2928
import { activateTaskProvider, Execution, runRlsCommand } from './tasks';
3029
import { withWsl } from './utils/child_process';
3130
import { uriWindowsToWsl, uriWslToWindows } from './utils/wslpath';
31+
import * as workspace_util from './workspace_util';
3232

3333
/**
3434
* Parameter type to `window/progress` request as issued by the RLS.

src/workspace_util.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import * as fs from 'fs';
22
import * as path from 'path';
3-
import { WorkspaceFolder, Uri } from 'vscode';
4-
5-
3+
import { Uri, WorkspaceFolder } from 'vscode';
64

75
// searches up the folder structure until it finds a Cargo.toml
86
export function nearestParentWorkspace(

0 commit comments

Comments
 (0)