tslint: Enable eofline
This commit is contained in:
parent
dd24a05670
commit
9a942c5047
9 changed files with 8 additions and 9 deletions
|
|
@ -270,4 +270,4 @@ export function expandValue(variableCreate: Function, value: string, root: strin
|
||||||
|
|
||||||
value = value.trim();
|
value = value.trim();
|
||||||
return parseValue();
|
return parseValue();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,4 +18,4 @@ export function spawnTerminalEmulator(preferedEmulator: string): Thenable<string
|
||||||
reject();
|
reject();
|
||||||
}, 10);
|
}, 10);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -58,4 +58,4 @@ export class MI2_LLDB extends MI2 {
|
||||||
setBreakPointCondition(bkptNum, condition): Thenable<any> {
|
setBreakPointCondition(bkptNum, condition): Thenable<any> {
|
||||||
return this.sendCommand("break-condition " + bkptNum + " \"" + escape(condition) + "\" 1");
|
return this.sendCommand("break-condition " + bkptNum + " \"" + escape(condition) + "\" 1");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,4 +42,4 @@ export class MI2_Mago extends MI2_LLDB {
|
||||||
}, reject);
|
}, reject);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -316,4 +316,4 @@ export function parseMI(output: string): MINode {
|
||||||
}
|
}
|
||||||
|
|
||||||
return new MINode(token, <any>outOfBandRecord || [], resultRecords);
|
return new MINode(token, <any>outOfBandRecord || [], resultRecords);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -150,4 +150,4 @@ class MemoryContentProvider implements vscode.TextDocumentContentProvider {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -303,4 +303,4 @@ suite("GDB Value Expansion", () => {
|
||||||
{ name: "floatval2", value: "234.45", variablesReference: 0 }
|
{ name: "floatval2", value: "234.45", variablesReference: 0 }
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -19,4 +19,4 @@ testRunner.configure({
|
||||||
useColors: true // colored output from test results
|
useColors: true // colored output from test results
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = testRunner;
|
module.exports = testRunner;
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@
|
||||||
"class-name": false,
|
"class-name": false,
|
||||||
"comment-format": false,
|
"comment-format": false,
|
||||||
"curly": false,
|
"curly": false,
|
||||||
"eofline": false,
|
|
||||||
"interface-name": false,
|
"interface-name": false,
|
||||||
"max-classes-per-file": false,
|
"max-classes-per-file": false,
|
||||||
"max-line-length": false,
|
"max-line-length": false,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue