gts
gts copied to clipboard
Should `eqeqeq` ignore nulls?
The default value for eqeqeq
is "always". I would expect it to ignore nulls as suggested in the style guide.
So this line:
https://github.com/google/gts/blob/78c51a14f3c0e3faf54f87030e6e1cefdf0630dc/.eslintrc.json#L14
Needs to be:
"eqeqeq": ["error", "always", {"null": "ignore"}]
@sofisl Hi, can I work on this?