dwyl / goodparts

:see_no_evil: An ESLint Style that only allows JavaScript the Good Parts (and "Better Parts") in your code.
GNU General Public License v2.0
78 stars 26 forks source link

We should be using both "error" and "warn" #252

Open samhstn opened 7 years ago

samhstn commented 7 years ago

For instance, when I am doing some code rearranging and trying get my code back to a working state, when I run the goodparts executable. I want to ensure that the code is not going to error. I don't want to get "error" messages about 'defined but never used', 'complexity', 'trailing whitespace' or 'missing semis'.

So I have to sift through all the "errors" for what I would consider actual errors like 'not defined' or 'unexpected tokens'

@nelsonic @SimonLab @jrans @eliascodes Thoughts?