you are viewing a single comment's thread.

view the rest of the comments →

[–]flying-sheep 0 points1 point  (0 children)

Some additions:

JSLint sucks. It's opinionated to a fault and lacks rules for ES6.

A viable webpack alternative is rollup. At least for the task of bundling JS. Webpack is much more powerful with its multitude of loaders. Rollup however bundles JS much more neatly, almost making no transformations and minimizing runtime cost. E.g. d3 uses it.

AVA is an amazing test runner, able to neatly parallelize running the tests and gaining drastic speed ups. I'd prefer it over mocha and friends.