DEV Community

Discussion on: Say Goodbye to console.log from Production environment

Collapse
 
gulshanaggarwal profile image
Gulshan Aggarwal

Nice trick! but what if you setup the rule late for you console.log ?

Collapse
 
jlong4223 profile image
Jared Long

Eslint-nibble is also an amazing tool for visualizing linting categories & errors in the project. It should also be able to auto remove all console.logs

Thread Thread
 
gulshanaggarwal profile image
Gulshan Aggarwal

thanks for the suggestion!

Thread Thread
 
uzair004 profile image
Muhammad Uzair

Nice one, but we usually have some console.log in catch blocks of code. Linter will fail because of those as well

Thread Thread
 
gulshanaggarwal profile image
Gulshan Aggarwal

Ok