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

Commit 60ff261

Browse files
committed
Fixed Missing trailing comma comma-dangle
1 parent 88f8f82 commit 60ff261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export function provideLinter() {
3232
excerpt: message,
3333
location: {
3434
file: path,
35-
position: new Range([line, column], [line, column + 1])
36-
}
35+
position: new Range([line, column], [line, column + 1]),
36+
},
3737
}]);
3838
}
3939

0 commit comments

Comments
 (0)