diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 15:08:14 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 15:08:14 +0300 |
commit | 257f898e4be76f9d460dde0542bf0ccfd9a9ecca (patch) | |
tree | 1e8c8a033913f772ab4fdecf6bf427d24b20df62 | |
parent | 020e6eabcc0a3b7a16110b37ea821e130d860249 (diff) | |
download | eslint-config-257f898e4be76f9d460dde0542bf0ccfd9a9ecca.tar.xz eslint-config-257f898e4be76f9d460dde0542bf0ccfd9a9ecca.zip |
feat(eslint): Rule "eqeqeq"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/eslint.json | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -32,7 +32,7 @@ - [ ] "dot-location" - [ ] "dot-notation" - [X] "eol-last" -- [ ] "eqeqeq" +- [X] "eqeqeq" - [ ] "for-direction" - [ ] "func-call-spacing" - [ ] "func-name-matching" diff --git a/src/rules/eslint.json b/src/rules/eslint.json index ac29da4..8363b48 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -7,6 +7,10 @@ "error", "always" ], + "eqeqeq": [ + "error", + "always" + ], "indent": [ "error", "tab", |