diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -177,7 +177,7 @@ - [ ] "no-restricted-syntax" - [ ] "no-return-assign" - [X] "no-return-await" -- [ ] "no-script-url" +- [X] "no-script-url" - [ ] "no-self-assign" - [ ] "no-self-compare" - [ ] "no-sequences" diff --git a/src/rules/default.json b/src/rules/default.json index ac079da..9913249 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -311,6 +311,9 @@ "no-return-await": [ "error" ], + "no-script-url": [ + "error" + ], "no-spaced-func": [ "off" ], |