We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a8e034 commit 3cc4df0Copy full SHA for 3cc4df0
src/editor/codelens.ts
@@ -148,10 +148,10 @@ class CodeLensProvider implements monacoTypes.languages.CodeLensProvider {
148
// Remove text from start - end
149
let start, end;
150
151
- if (i == 0) {
+ if (i === 0) {
152
start = stage.startOffset;
153
end = seperators.length > 0 ? seperators[0] + 1 : stage.endOffset + 1;
154
- } else if (i == stages.length - 1) {
+ } else if (i === stages.length - 1) {
155
start = seperators[seperators.length - 1];
156
end = stage.endOffset + 1;
157
} else {
0 commit comments