mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
32 lines
473 B
JSON
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"]
|
|
}
|
|
}
|