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 e0ed9f7 commit 186115cCopy full SHA for 186115c
src/backend/mi_parse.ts
@@ -93,8 +93,7 @@ export class MINode implements MIInfo {
93
path = path.substr(target[0].length);
94
if (current.length && typeof current != "string") {
95
const found = [];
96
- for (let i = 0; i < current.length; i++) {
97
- const element = current[i];
+ for (const element of current) {
98
if (element[0] == target[1]) {
99
found.push(element[1]);
100
}
tslint.json
@@ -32,7 +32,6 @@
32
"one-variable-per-declaration": false,
33
"only-arrow-functions": false,
34
"ordered-imports": false,
35
- "prefer-for-of": false,
36
"quotemark": false,
37
"radix": false,
38
"semicolon": false,
0 commit comments