Skip to content

Commit 55edeac

Browse files
committed
Fix eslint failure
1 parent 5b4e05a commit 55edeac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/base/common/stripComments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
} else if (m4) {
3131
// Since m4 is a single line comment is is at least of length 2 (e.g. //)
3232
// If it ends in \r?\n then keep it.
33-
const length = m4.length
33+
const length = m4.length;
3434
if (m4[length - 1] === '\n') {
3535
return m4[length - 2] === '\r' ? '\r\n' : '\n';
3636
}

0 commit comments

Comments
 (0)