You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Harmony language features without "use strict" (I am fully guilty of this one on a regular basis, and I realize it every time I deploy to an Ubuntu LTS system where Node is older than ~6.x)
Using === in a situation where you actually want equality to be checked on a type-coercive basis (though I have no idea how you'd gauge this based on the AST)
Various complaints about whitespace:
Mixing tabs and spaces
Whitespace at end of line
No newline at end of file
Lines that don't use whitespace in any place where it'd be valid ("why are you postprocessing this if you've already minified it?")
Entire lines that use whitespace in every place it could be valid (eg. new Date ( 1989 , 5 , 28 ) . toISOString ( ))
Also, what about a config option to decide whether the processor complains about using semicolons, or not using semicolons?
The text was updated successfully, but these errors were encountered:
Here are some of my own personal pet peeves:
===
in a situation where you actually want equality to be checked on a type-coercive basis (though I have no idea how you'd gauge this based on the AST)new Date ( 1989 , 5 , 28 ) . toISOString ( )
)Also, what about a config option to decide whether the processor complains about using semicolons, or not using semicolons?
The text was updated successfully, but these errors were encountered: