mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-03 04:04:33 +00:00
Fix remaining lint errors (#19166)
This commit is contained in:
@@ -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`)
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -1 +1,7 @@
|
||||
{ "extends": "dtslint/dt.json" }
|
||||
{
|
||||
"extends": "dtslint/dt.json",
|
||||
"rules": {
|
||||
// TODOs
|
||||
"no-duplicate-imports": false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user