How to get a React project linting in real time with Atom
First install the JSHint package for Atom.
At the base of your project you’ll need a .jshintrc file. It should enable ES6.
{
"esversion" : 6
}Then under Atom -> Open Your Config add the following:
jshint:
supportLintingJsx: trueThis post is specifically my own thoughts & not representative of my employers past or present.