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

Commit 8221d0c

Browse files
committed
Fixing linter issues
1 parent 889119d commit 8221d0c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/styled-template-language-service.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function overlaps(
3838

3939
const emptyCompletionList: vscode.CompletionList = {
4040
items: [],
41-
isIncomplete: false
41+
isIncomplete: false,
4242
};
4343

4444
class CompletionsCache {
@@ -332,7 +332,7 @@ export default class StyledTemplateLanguageService implements TemplateLanguageSe
332332
if (edits) {
333333
actions.push({
334334
description: vsAction.title,
335-
changes: edits.map(edit => this.translateTextEditToFileTextChange(context, edit))
335+
changes: edits.map(edit => this.translateTextEditToFileTextChange(context, edit)),
336336
});
337337
}
338338
}
@@ -350,11 +350,11 @@ export default class StyledTemplateLanguageService implements TemplateLanguageSe
350350
textChanges: [{
351351
newText: textEdit.newText,
352352
span: {
353-
start: start,
354-
length: end - start
355-
}
356-
}]
357-
}
353+
start,
354+
length: end - start,
355+
},
356+
}],
357+
};
358358
}
359359
}
360360

0 commit comments

Comments
 (0)