Files
azuredatastudio/tslint-sql.json
2019-09-18 14:35:46 -07:00

35 lines
450 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"
]
},
"use-isnan": {
"severity": "error"
}
},
"linterOptions": {
"exclude": [
"src/vs/**/*.ts"
]
}
}