feat(eslint): Rule "no-extend-native"

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

View File

@ -113,7 +113,7 @@
- [ ] "no-eq-null"
- [X] "no-eval"
- [ ] "no-ex-assign"
- [ ] "no-extend-native"
- [X] "no-extend-native"
- [ ] "no-extra-bind"
- [ ] "no-extra-boolean-cast"
- [ ] "no-extra-label"

View File

@ -236,6 +236,9 @@
"allowIndirect": false
}
],
"no-extend-native": [
"error"
],
"no-extra-semi": [
"error"
],