feat(eslint): Rule "no-caller"

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

View File

@ -83,7 +83,7 @@
- [ ] "no-await-in-loop" - [ ] "no-await-in-loop"
- [ ] "no-bitwise" - [ ] "no-bitwise"
- [ ] "no-buffer-constructor" - [ ] "no-buffer-constructor"
- [ ] "no-caller" - [X] "no-caller"
- [ ] "no-case-declarations" - [ ] "no-case-declarations"
- [X] "no-catch-shadow" - [X] "no-catch-shadow"
- [ ] "no-class-assign" - [ ] "no-class-assign"

View File

@ -200,6 +200,9 @@
"no-alert": [ "no-alert": [
"warn" "warn"
], ],
"no-caller": [
"error"
],
"no-catch-shadow": [ "no-catch-shadow": [
"off" "off"
], ],