Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8d1891d

Browse files
committedNov 7, 2019
Squash lint complaint
1 parent cbf466c commit 8d1891d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ async function registerHieCommand(
280280
getArgs: (editor: TextEditor) => any[]
281281
) {
282282
const editorCmd = commands.registerTextEditorCommand(name, editor => {
283-
let args = getArgs(editor);
283+
const args = getArgs(editor);
284284
const cmd = {
285285
command,
286286
arguments: args

0 commit comments

Comments
 (0)
Please sign in to comment.