Added source = tslint to the diagnostic

This commit is contained in:
Erich Gamma 2017-04-24 10:32:04 +02:00
Родитель 2b6341c15a
Коммит a85f86d34a
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -102,6 +102,7 @@ function init(modules: { typescript: typeof ts_module }) {
length: problem.getEndPosition().getPosition() - problem.getStartPosition().getPosition(),
messageText: message,
category: category,
source: 'tslint',
code: TSLINT_ERROR_CODE
};
return diagnostic;
@ -258,9 +259,9 @@ function init(modules: { typescript: typeof ts_module }) {
description: `Disable rule '${problem.getRuleName()}'`,
changes: [{
fileName: fileName,
textChanges: [{
textChanges: [{
newText: `// tslint:disable-next-line:${problem.getRuleName()}\n`,
span: { start: file.getLineStarts()[problem.getStartPosition().getLineAndCharacter().line], length: 0}
span: { start: file.getLineStarts()[problem.getStartPosition().getLineAndCharacter().line], length: 0}
}
]
}]