Closed bcomnes closed 9 years ago
That makes sense. It's only in the current order because of @feross's What you might do if you're clever section in the standard readme.
@bcomnes mind updating the change log too?
Would probably be good to change it in the root package.json
too.
Actually I've got some time and energy right now, I'll take care of the rest of this one. Thanks @bcomnes!
Oh yeah. Just wanted to make sure everything was cool first. :+1:
Reverting this as the linter is not just for style and will often catch syntax errors that will trip up tests. I think linter && test
is the right order.
Hypotheses: Style linting is important, but sometimes it just gets in the way when writing tests. Moving our linting to the end of the test chain helps avoid unnecessary style enforcement when writing tests.
Linting can help catch errors, but more often than not it's better to address those errors after running the test suite.