Eslint isn't really doing it's job right now. It's configured, and it runs, but it doesn't catch obvious mistakes. So how can we trust it to catch non-obvious mistakes!
Examples of things eslint is not catching:
incorrect indentation
padding within curly brackets - ({prop}) vs ({ prop })
Eslint isn't really doing it's job right now. It's configured, and it runs, but it doesn't catch obvious mistakes. So how can we trust it to catch non-obvious mistakes!
Examples of things eslint is not catching:
({prop})
vs({ prop })