Commit b9fafc17 authored by Devon Carew's avatar Devon Carew

adjust a regex for intl files

parent 780e4e62
...@@ -387,7 +387,7 @@ class AnalyzeCommand extends FlutterCommand { ...@@ -387,7 +387,7 @@ class AnalyzeCommand extends FlutterCommand {
} else if (filename.endsWith('.mojom.dart')) { } else if (filename.endsWith('.mojom.dart')) {
// autogenerated code - TODO(ianh): Fix the Dart mojom compiler // autogenerated code - TODO(ianh): Fix the Dart mojom compiler
shouldIgnore = true; shouldIgnore = true;
} else if ((sourceLines[0] == '/**') && (' * DO NOT EDIT. This is code generated'.matchAsPrefix(sourceLines[1]) != null)) { } else if ((sourceLines[0] == '/*') && (' * DO NOT EDIT. This is code generated'.matchAsPrefix(sourceLines[1]) != null)) {
// autogenerated code - TODO(ianh): Fix the intl package resource generator // autogenerated code - TODO(ianh): Fix the intl package resource generator
shouldIgnore = true; shouldIgnore = true;
} else if (level == 'lint' && errorMessage == 'Name non-constant identifiers using lowerCamelCase.') { } else if (level == 'lint' && errorMessage == 'Name non-constant identifiers using lowerCamelCase.') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment