flakes 1.1.0 flakes: ^1.1.0 copied to clipboard
A collection of Lint rules for Dart and Flutter projects. #lints
// Don't invoke 'print' in production code. Try using a logging framework.
// ignore_for_file: avoid_print
void main() {
// Local variables should be final. Try making the variable final.
// ignore: prefer_final_locals
var message = 'I see some flakes...';
print(message);
}