main function
Test file demonstrating the custom lint rule for print statements.
This file intentionally contains a print statement that should trigger the custom lint warning, serving as a verification that the lint rule is working as expected. Entry point of the application.
This main function serves as the starting point and calls the test function that contains a print statement we expect to be flagged by our custom lint.
Implementation
/// Entry point of the application.
///
/// This main function serves as the starting point and calls the test function
/// that contains a print statement we expect to be flagged by our custom lint.
void main() {
customLintTest();
}