Create your own lint rules with custom lint
In this article, we will explore the process of creating custom lint rules with [custom_lint]. Specifically, we will create a custom lint rule that warns developers when they use print
statements in their code and provides a quick fix to replace the print
statement with log
from the developer
package.