static analysis: exclude generated file
This commit is contained in:
parent
19314ccfd4
commit
875db2f994
2 changed files with 8 additions and 7 deletions
|
@ -2,6 +2,7 @@ include: package:pedantic/analysis_options.yaml
|
|||
|
||||
analyzer:
|
||||
exclude:
|
||||
- lib/flutter_version.dart
|
||||
- lib/generated_plugin_registrant.dart
|
||||
|
||||
# strong-mode:
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
// run `scripts/update_flutter_version.sh` to update with the content of `flutter --version --machine`
|
||||
const Map<String, String> version = {
|
||||
'channel': 'unknown',
|
||||
'dartSdkVersion': 'unknown',
|
||||
'engineRevision': 'unknown',
|
||||
'frameworkCommitDate': 'unknown',
|
||||
'frameworkRevision': 'unknown',
|
||||
'frameworkVersion': 'unknown',
|
||||
'repositoryUrl': 'unknown',
|
||||
"channel": "unknown",
|
||||
"dartSdkVersion": "unknown",
|
||||
"engineRevision": "unknown",
|
||||
"frameworkCommitDate": "unknown",
|
||||
"frameworkRevision": "unknown",
|
||||
"frameworkVersion": "unknown",
|
||||
"repositoryUrl": "unknown",
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue