diff --git a/types/async/test/explicit.ts b/types/async/test/explicit.ts index 0c0e1a44ee..39d831fd65 100644 --- a/types/async/test/explicit.ts +++ b/types/async/test/explicit.ts @@ -1,5 +1,3 @@ - - interface StringCallback { (err?: Error, result?: string): void; } interface AsyncStringGetter { (callback: StringCallback): void; } @@ -71,4 +69,3 @@ async.parallelLimit(taskDict, 3, function(err, results) { let one = results['one']; console.log(one && one.toFixed(1)) }); - diff --git a/types/async/test/index.ts b/types/async/test/index.ts index 8d9781fd4a..1b1c794044 100644 --- a/types/async/test/index.ts +++ b/types/async/test/index.ts @@ -767,4 +767,3 @@ var wrapped3 = async.timeout(myFunction3, 1000, { bar: 'bar' }); wrapped3( function(err : Error, data : any) { console.log(`async.timeout 3 end ${data}`); }); - diff --git a/types/async/tslint.json b/types/async/tslint.json index 8a86925d1a..2074a7856c 100644 --- a/types/async/tslint.json +++ b/types/async/tslint.json @@ -21,7 +21,6 @@ "semicolon": false, // HAS ISSUES "space-before-function-paren": false, // HAS ISSUES "space-within-parens": false, // HAS ISSUES - "trim-file": false, // HAS ISSUES "typedef-whitespace": false, // HAS ISSUES "unified-signatures": false // HAS ISSUES }