feat(eslint): Rule "no-undefined"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 22:49:40 +04:00
parent 877c5f7ad1
commit e914d9f80e
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -195,7 +195,7 @@
- [ ] "no-trailing-spaces"
- [ ] "no-undef"
- [ ] "no-undef-init"
- [ ] "no-undefined"
- [X] "no-undefined"
- [X] "no-underscore-dangle"
- [ ] "no-unexpected-multiline"
- [ ] "no-unmodified-loop-condition"

View File

@ -149,6 +149,9 @@
"no-ternary": [
"off"
],
"no-undefined": [
"off"
],
"no-underscore-dangle": [
"error",
{