Fixed "trim-file" lint rule

This commit is contained in:
Dmitri1337
2019-01-16 18:28:06 +02:00
parent 8d29540c53
commit 9bfa52c409
3 changed files with 0 additions and 5 deletions
-3
View File
@@ -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))
});
-1
View File
@@ -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}`);
});
-1
View File
@@ -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
}