feat(eslint): Rule "no-return-await"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-14 01:46:18 +04:00
parent 0c0d6c019f
commit 14a81b9fea
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -176,7 +176,7 @@
- [ ] "no-restricted-properties"
- [ ] "no-restricted-syntax"
- [ ] "no-return-assign"
- [ ] "no-return-await"
- [X] "no-return-await"
- [ ] "no-script-url"
- [ ] "no-self-assign"
- [ ] "no-self-compare"

View File

@ -308,6 +308,9 @@
"no-proto": [
"error"
],
"no-return-await": [
"error"
],
"no-spaced-func": [
"off"
],