feat(eslint): Rule "eqeqeq"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 16:08:14 +04:00
parent 020e6eabcc
commit 257f898e4b
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 5 additions and 1 deletions

View File

@ -32,7 +32,7 @@
- [ ] "dot-location"
- [ ] "dot-notation"
- [X] "eol-last"
- [ ] "eqeqeq"
- [X] "eqeqeq"
- [ ] "for-direction"
- [ ] "func-call-spacing"
- [ ] "func-name-matching"

View File

@ -7,6 +7,10 @@
"error",
"always"
],
"eqeqeq": [
"error",
"always"
],
"indent": [
"error",
"tab",