Fix remaining lint errors (#19166)

This commit is contained in:
Andy
2017-08-20 15:37:53 -07:00
committed by GitHub
parent 83230ae14e
commit 924fafffc0
861 changed files with 2641 additions and 2198 deletions

View File

@@ -50,7 +50,7 @@ class LambdaClassTest {
@Post()
path2(@PathParam('path2') path: string, @PathParam('my') here: string) {
this.callback(null, {
body: JSON.stringify('path: ' + path + ', my:' + here + ', query: ' + this.queryParams.var + "\n")
body: JSON.stringify(`path: ${path}, my:${here}, query: ${this.queryParams.var}\n`)
});
}

View File

@@ -1 +1,7 @@
{ "extends": "dtslint/dt.json" }
{
"extends": "dtslint/dt.json",
"rules": {
// TODOs
"no-duplicate-imports": false
}
}