Open
Description
@bkonyi suggested we should standardize on a directory in $HOME
we use for Dart tooling.
We currently have:
~/.dart-tool/
(containing telemetry data)~/.dart/
(analytics)~/.dartServer/
(analysis server)~/.pub-cache
(introduced in the days whenpub
was a standalone tool rather thandart pub
)~/.flutter-devtools/.devtools
For a the workspace-specific directory we have standardized on <workspace>/.dart_tool/<package-name>/
(doc). (Note the underscore instead of dash.)
Should we standardize?
And if so, should we standardize to ~/.dart/
?
~/.dart/telemetry/
~/.dart/analytics/
~/.dart/analysis_server/
~/.dart/pub/
(Can we migrate, or is that too painful? @sigurdm)~/.dart/.devtools/
~/.dart/installed/
([cli] Introducedart install
(replacingdart pub global activate
to use) #60889)