diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -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" diff --git a/src/rules/default.json b/src/rules/default.json index 404efdc..ac079da 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -308,6 +308,9 @@ "no-proto": [ "error" ], + "no-return-await": [ + "error" + ], "no-spaced-func": [ "off" ], |