Add no-return-await TSLint rule

This commit is contained in:
Kamil Pajdzik 2018-11-29 12:34:24 -08:00
Родитель fd2bac3749
Коммит c14db65ad9
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -44,12 +44,13 @@
} }
], ],
"no-internal-module": true, "no-internal-module": true,
"no-trailing-whitespace": true, "jsdoc-format": true,
"no-inferrable-types": [true], "no-inferrable-types": [true],
"no-null-keyword": true, "no-null-keyword": true,
"prefer-const": true, "no-return-await": true,
"no-switch-case-fall-through": true, "no-switch-case-fall-through": true,
"triple-equals": [true, "allow-undefined-check"], "no-trailing-whitespace": true,
"jsdoc-format": true "prefer-const": true,
"triple-equals": [true, "allow-undefined-check"]
} }
} }