I'm currently trying to enforce that me or my colleague cannot commit files that contains console.log in my angular application.
I currently already have husky
on pre-commit, that execute a ng lint --fix
.
Is there a way to either add something to my linting to prevent console log, or to add something in the husky script?
People should still be able to use console.log, just not commit it.
Thanks
You can go to your project's
tslint.json
file and make sure this option is present in your file:If you prefer something that won't "block" you but just warn you, you also can set this option as follows:
And finally, if you want to target some
console
functions more precisely, you can specify them like this: