Add JavaScript rule for comparisons

Using `==` and `!=` sometimes causes unexpected behaviour in JavaScript,
and it's easy for Ruby developers to use them incorrectly.
This commit is contained in:
Javi Martín
2019-07-03 00:49:43 +02:00
parent 392095a379
commit d9bb553894

View File

@@ -20,6 +20,10 @@ rules:
computed-property-spacing: error
curly: error
eol-last: error
eqeqeq:
- error
- always
- "null": ignore
func-call-spacing: error
indent:
- error