Skip to content

Commit aa0f613

Browse files
authored
Force semicolon in object literal (#1493)
1 parent b68d1e1 commit aa0f613

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Extension/src/LanguageServer/ui.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export class UI {
165165
});
166166
}
167167

168-
public showWorkspaces(workspaceNames: { name: string, key: string }[]): Thenable<string> {
168+
public showWorkspaces(workspaceNames: { name: string; key: string }[]): Thenable<string> {
169169
let options: vscode.QuickPickOptions = {};
170170
options.placeHolder = "Select a Workspace...";
171171

Extension/tslint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"promise-must-complete": true,
1515
"semicolon": true,
1616
"triple-equals": true,
17+
"type-literal-delimiter": true,
1718
"typedef": [true, "variable-declaration", "call-signature"],
1819
"whitespace": [true, "check-branch", "check-operator", "check-separator", "check-preblock", "check-type"]
1920
},

0 commit comments

Comments
 (0)