Unverified Commit cb3dee79 authored by Devon Carew's avatar Devon Carew Committed by GitHub

add an analysis_options excludes for the build/ dir (#23653)

* add an analysis_options excludes for the build/ dir

* fix bots
parent 37cdcd76
......@@ -83,6 +83,9 @@ void main(List<String> args) {
pubspec = pubspec.replaceAll('../../packages/flutter', '../../../packages/flutter');
_file(out, 'pubspec.yaml').writeAsStringSync(pubspec);
// Remove the (flutter_gallery specific) analysis_options.yaml file.
_file(out, 'analysis_options.yaml').deleteSync();
_file(out, '.dartignore').writeAsStringSync('');
// Count source lines and number of files; tell how to run it.
......
# Take our settings from the repo's main analysis_options.yaml file, but add
# an exclude for the build directory.
include: ../../analysis_options.yaml
analyzer:
exclude:
- build/**
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