DEV Community

Discussion on: Improve your Javascript code in PhpStorm

Collapse
 
csorbamatyi profile image
Matyi Csorba

It's a really good tool in Phpstorm/Webstorm, but I love to use Eslint with airbnb coding standard settings, Oh and don't forget lint with precommit hooks. It will prevent you to push any "bad" code to the codebase.

Collapse
 
shockwavee profile image
Davor Tvorić

I agree, it definitely makes more sense to use a linter and a prettier not to worry about those things. I envisioned this as more of a simpler initial step.