DEV Community

Discussion on: Remove all console.log()s using Regex in Atom

Collapse
 
michael profile image
Michael Lee 🍕

Definitely agree with the use of Linters. Been using ESLint for a project with other devs. Unfortunately, logs still make it into production :( Definitely could benefit from a build process that would clean that up for us. But that only fixes code and not the source ;)

Collapse
 
worsnupd profile image
Daniel Worsnup

If this continues to be an issue, it may be worth your time to set up required status checks on your repository using the Status API and webhooks. You can use these tools to automatically reject pull requests that contain code changes that fail ESLint validation.