Files
azuredatastudio/tslint-sql.json
Amir Omidi 83c9c3f618 New rule to stop floating promises (#7165)
* Rules surrounding promises
2019-09-11 14:25:21 -07:00

32 lines
473 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": {
"severity": "warn",
"options": ["Thenable"]
},
"no-promise-as-boolean": {
"severity": "error",
"options": ["Thenable"]
}
},
"linterOptions": {
"exclude": ["src/vs/**/*.ts"]
}
}