ignore .idea directory in dart analyzer and analyzer benchmark output (#55235)

This commit is contained in:
Jim Graham 2020-07-29 17:16:26 -07:00 committed by GitHub
parent 5398f5c566
commit 210f7680fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View file

@ -36,6 +36,7 @@
/dev/integration_tests/**/Pods
/packages/flutter/coverage/
version
analysis_benchmark.json
# packages file containing multi-root paths
.packages.generated

View file

@ -1151,6 +1151,8 @@ Iterable<File> _allFiles(String workingDirectory, String extension, { @required
continue;
if (path.basename(entity.path) == '.git')
continue;
if (path.basename(entity.path) == '.idea')
continue;
if (path.basename(entity.path) == '.gradle')
continue;
if (path.basename(entity.path) == '.dart_tool')