Skip to content

Commit 9a942c5

Browse files
committed
tslint: Enable eofline
1 parent dd24a05 commit 9a942c5

File tree

9 files changed

+8
-9
lines changed

9 files changed

+8
-9
lines changed

src/backend/gdb_expansion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,4 +270,4 @@ export function expandValue(variableCreate: Function, value: string, root: strin
270270

271271
value = value.trim();
272272
return parseValue();
273-
}
273+
}

src/backend/linux/console.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ export function spawnTerminalEmulator(preferedEmulator: string): Thenable<string
1818
reject();
1919
}, 10);
2020
});
21-
}
21+
}

src/backend/mi2/mi2lldb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ export class MI2_LLDB extends MI2 {
5858
setBreakPointCondition(bkptNum, condition): Thenable<any> {
5959
return this.sendCommand("break-condition " + bkptNum + " \"" + escape(condition) + "\" 1");
6060
}
61-
}
61+
}

src/backend/mi2/mi2mago.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ export class MI2_Mago extends MI2_LLDB {
4242
}, reject);
4343
});
4444
}
45-
}
45+
}

src/backend/mi_parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,4 +316,4 @@ export function parseMI(output: string): MINode {
316316
}
317317

318318
return new MINode(token, <any>outOfBandRecord || [], resultRecords);
319-
}
319+
}

src/frontend/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,4 @@ class MemoryContentProvider implements vscode.TextDocumentContentProvider {
150150
});
151151
});
152152
}
153-
}
153+
}

test/gdb_expansion.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,4 +303,4 @@ suite("GDB Value Expansion", () => {
303303
{ name: "floatval2", value: "234.45", variablesReference: 0 }
304304
]);
305305
});
306-
});
306+
});

test/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ testRunner.configure({
1919
useColors: true // colored output from test results
2020
});
2121

22-
module.exports = testRunner;
22+
module.exports = testRunner;

tslint.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"class-name": false,
1313
"comment-format": false,
1414
"curly": false,
15-
"eofline": false,
1615
"interface-name": false,
1716
"max-classes-per-file": false,
1817
"max-line-length": false,

0 commit comments

Comments
 (0)