Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
210f7680
Unverified
Commit
210f7680
authored
Jul 30, 2020
by
Jim Graham
Committed by
GitHub
Jul 30, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ignore .idea directory in dart analyzer and analyzer benchmark output (#55235)
parent
5398f5c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
.gitignore
.gitignore
+1
-0
analyze.dart
dev/bots/analyze.dart
+2
-0
No files found.
.gitignore
View file @
210f7680
...
@@ -36,6 +36,7 @@
...
@@ -36,6 +36,7 @@
/dev/integration_tests/**/Pods
/dev/integration_tests/**/Pods
/packages/flutter/coverage/
/packages/flutter/coverage/
version
version
analysis_benchmark.json
# packages file containing multi-root paths
# packages file containing multi-root paths
.packages.generated
.packages.generated
...
...
dev/bots/analyze.dart
View file @
210f7680
...
@@ -1151,6 +1151,8 @@ Iterable<File> _allFiles(String workingDirectory, String extension, { @required
...
@@ -1151,6 +1151,8 @@ Iterable<File> _allFiles(String workingDirectory, String extension, { @required
continue
;
continue
;
if
(
path
.
basename
(
entity
.
path
)
==
'.git'
)
if
(
path
.
basename
(
entity
.
path
)
==
'.git'
)
continue
;
continue
;
if
(
path
.
basename
(
entity
.
path
)
==
'.idea'
)
continue
;
if
(
path
.
basename
(
entity
.
path
)
==
'.gradle'
)
if
(
path
.
basename
(
entity
.
path
)
==
'.gradle'
)
continue
;
continue
;
if
(
path
.
basename
(
entity
.
path
)
==
'.dart_tool'
)
if
(
path
.
basename
(
entity
.
path
)
==
'.dart_tool'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment