forked from firka/flutter
ignore .idea directory in dart analyzer and analyzer benchmark output (#55235)
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user