Skip to content
This repository was archived by the owner on Sep 24, 2021. It is now read-only.

Commit 8f64254

Browse files
committed
fixed lint on goSuggest
src/goSuggest.ts[203, 29]: missing whitespace
1 parent 301ee17 commit 8f64254

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goSuggest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export class GoCompletionItemProvider implements vscode.CompletionItemProvider {
200200
let snippet = prefix + ' ${1:methodName}(${2}) ${3} \{\n\t$0\n\}';
201201
// [TypeFox]
202202
// auxItem.insertText = new vscode.SnippetString(snippet);
203-
auxItem.insertText =snippet;
203+
auxItem.insertText = snippet;
204204
auxItem.insertTextFormat = vscode.InsertTextFormat.Snippet;
205205
suggestions.push(auxItem);
206206
}

0 commit comments

Comments
 (0)