mirror of
https://github.com/VSCodeVim/Vim.git
synced 2024-11-12 15:01:56 +03:00
9487360e59
I don't think namespaces are technically deprecated, but they're an unnecessary typescript-only feature that we're using in exactly one place, so let's stop.
16 lines
499 B
JSON
16 lines
499 B
JSON
{
|
|
"extends": "tslint:recommended",
|
|
"rules": {
|
|
"array-type": { "options": "array-simple" },
|
|
"await-promise": [true, "Thenable"],
|
|
"max-classes-per-file": false,
|
|
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
|
|
"no-duplicate-variable": true,
|
|
"no-parameter-properties": true,
|
|
"no-return-await": true,
|
|
"no-switch-case-fall-through": true,
|
|
"no-unnecessary-type-assertion": true,
|
|
"prefer-const": { "options": { "destructuring": "all" } }
|
|
}
|
|
}
|