tslint: Enable eofline

This commit is contained in:
Simon Marchi 2018-07-18 11:16:58 -04:00
commit 9a942c5047
9 changed files with 8 additions and 9 deletions

View file

@ -270,4 +270,4 @@ export function expandValue(variableCreate: Function, value: string, root: strin
value = value.trim();
return parseValue();
}
}

View file

@ -18,4 +18,4 @@ export function spawnTerminalEmulator(preferedEmulator: string): Thenable<string
reject();
}, 10);
});
}
}

View file

@ -58,4 +58,4 @@ export class MI2_LLDB extends MI2 {
setBreakPointCondition(bkptNum, condition): Thenable<any> {
return this.sendCommand("break-condition " + bkptNum + " \"" + escape(condition) + "\" 1");
}
}
}

View file

@ -42,4 +42,4 @@ export class MI2_Mago extends MI2_LLDB {
}, reject);
});
}
}
}

View file

@ -316,4 +316,4 @@ export function parseMI(output: string): MINode {
}
return new MINode(token, <any>outOfBandRecord || [], resultRecords);
}
}

View file

@ -150,4 +150,4 @@ class MemoryContentProvider implements vscode.TextDocumentContentProvider {
});
});
}
}
}

View file

@ -303,4 +303,4 @@ suite("GDB Value Expansion", () => {
{ name: "floatval2", value: "234.45", variablesReference: 0 }
]);
});
});
});

View file

@ -19,4 +19,4 @@ testRunner.configure({
useColors: true // colored output from test results
});
module.exports = testRunner;
module.exports = testRunner;

View file

@ -12,7 +12,6 @@
"class-name": false,
"comment-format": false,
"curly": false,
"eofline": false,
"interface-name": false,
"max-classes-per-file": false,
"max-line-length": false,