Additional rule for spacing between decorator on same line as its declaration

This commit is contained in:
Ron Buckton
2015-04-07 17:23:52 -07:00
parent 1a1bb34864
commit eec39c2fc5
2 changed files with 27 additions and 2 deletions

View File

@@ -237,9 +237,9 @@ export function delint(sourceFile: ts.SourceFile) {
>sourceFile : ts.SourceFile
>getLineAndCharacterOfPosition : (pos: number) => ts.LineAndCharacter
>node.getStart() : number
>node.getStart : (sourceFile?: ts.SourceFile) => number
>node.getStart : (sourceFile?: ts.SourceFile, skipDecorators?: boolean) => number
>node : ts.Node
>getStart : (sourceFile?: ts.SourceFile) => number
>getStart : (sourceFile?: ts.SourceFile, skipDecorators?: boolean) => number
console.log(`${sourceFile.fileName} (${line + 1},${character + 1}): ${message}`);
>console.log(`${sourceFile.fileName} (${line + 1},${character + 1}): ${message}`) : any