mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
35 lines
450 B
JSON
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"
|
|
]
|
|
}
|
|
}
|