feat(eslint): Rule "no-script-url"

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

View File

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

View File

@ -311,6 +311,9 @@
"no-return-await": [ "no-return-await": [
"error" "error"
], ],
"no-script-url": [
"error"
],
"no-spaced-func": [ "no-spaced-func": [
"off" "off"
], ],