lint_quido 0.3.7 lint_quido: ^0.3.7 copied to clipboard
Collection of Flutter lints that we use and follow in Miquido
// The following syntax deactivates a lint for the entire file:
// ignore_for_file: avoid_print
void main() {
/// The following syntax deactivates a lint for one line:
var company = 'Miquido'; // ignore: prefer_final_locals, just to show example
/// The following line would normally show a lint warning
/// but we disabled the lint rule for this file using `ignore_for_file`
print(company);
}