mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* linting for extensions + new rule * Remove unneeded array * Fix spelling mistake * Fix bad merge
37 lines
504 B
JSON
37 lines
504 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"
|
|
},
|
|
"no-underscore-in-localize-keys": true
|
|
},
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"src/vs/**/*.ts"
|
|
]
|
|
}
|
|
}
|