no-anonymous-console: every console.log, warn etc should have some identifying string as its first parameter.
I have been on projects where some rookie has put in console.log(a) while debugging something and then it was missed during peer review and some time later the unit tests just start spitting out some random variable value (or just undefined) with no indication of where the console message is coming from. This can be very hard to track down and remove.
console.log(o)
console.warn(o)
console.error(o)
etc...
console.log("value of", o)
console.warn(displayName, props)
could add the file name as the first parameter of such console messages.
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too