diff --git a/tslint-sql.json b/tslint-sql.json index 9333318f92..384112157c 100644 --- a/tslint-sql.json +++ b/tslint-sql.json @@ -12,9 +12,20 @@ ], "argIndex": 1 } - ] + ], + "no-floating-promises":{ + "severity": "warn" + }, + "await-promise": { + "severity": "warn", + "options": ["Thenable"] + }, + "no-promise-as-boolean": { + "severity": "error", + "options": ["Thenable"] + } }, "linterOptions": { "exclude": ["src/vs/**/*.ts"] } -} \ No newline at end of file +}