Unverified Commit 210f7680 authored by Jim Graham's avatar Jim Graham Committed by GitHub

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

parent 5398f5c5
......@@ -36,6 +36,7 @@
/dev/integration_tests/**/Pods
/packages/flutter/coverage/
version
analysis_benchmark.json
# packages file containing multi-root paths
.packages.generated
......
......@@ -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')
......
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