Files
azuredatastudio/tslint-sql.json
Charles Gagnon e4e71af597 Fix all await-promise tslint errors (#7530)
* Fix all await-promise tslint errors

* Remove unnecessary await
2019-10-07 17:52:01 -07:00

36 lines
462 B
JSON

{
"rulesDirectory": [
"build/lib/tslint"
],
"rules": {
"double-quoted-string-arg": [
true,
{
"signatures": [
"localize",
"nls.localize"
],
"argIndex": 1
}
],
"no-floating-promises": {
"severity": "warn"
},
"await-promise": {
"options": [
"Thenable",
"Deferred",
"PromiseLike"
]
},
"use-isnan": {
"severity": "error"
}
},
"linterOptions": {
"exclude": [
"src/vs/**/*.ts"
]
}
}