Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 448da69

Browse files
committed
Cleanup imports in ruby.ts
1 parent 805632a commit 448da69

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/ruby.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
'use strict';
22

3-
import * as path from 'path';
4-
import { ExtensionContext, languages, Location, Position } from 'vscode';
5-
import * as Locate from './locate/locate';
6-
import { registerTaskProvider } from './task/rake';
3+
import { ExtensionContext, languages } from 'vscode';
4+
75
import * as utils from './utils';
86

97
import { registerCompletionProvider } from './providers/completion';
108
import { registerFormatter } from './providers/formatter';
119
import { registerHighlightProvider } from './providers/highlight';
1210
import { registerIntellisenseProvider } from './providers/intellisense';
1311
import { registerLinters } from './providers/linters';
12+
import { registerTaskProvider } from './task/rake';
1413

1514
export function activate(context: ExtensionContext) {
1615
const subs = context.subscriptions;

0 commit comments

Comments
 (0)