Skip to content

Commit 209ca07

Browse files
author
Armando Aguirre
committed
Fixed lint issues
1 parent 98729b4 commit 209ca07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/services/navigationBar.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ namespace ts.NavigationBar {
1515
*/
1616
const whiteSpaceRegex = /\s+/g;
1717

18-
/**
19-
* Maximum amount of characters to return
18+
/**
19+
* Maximum amount of characters to return
2020
* The amount was choosen arbitrarily.
2121
*/
2222
const maxLength = 150;
@@ -713,6 +713,6 @@ namespace ts.NavigationBar {
713713
// \r - Carriage Return
714714
// \u2028 - Line separator
715715
// \u2029 - Paragraph separator
716-
return text.replace(/\\?(\r?\n|\u2028|\u2029)/g, '');
716+
return text.replace(/\\?(\r?\n|\u2028|\u2029)/g, "");
717717
}
718718
}

0 commit comments

Comments
 (0)