coreos / mayday

A diagnostics tool for capturing system state.
Apache License 2.0
81 stars 27 forks source link

Cleanup of imports #44

Closed brianredbeard closed 8 years ago

brianredbeard commented 8 years ago

At some point (just for readability) package imports should get cleaned up. An example of doing this well is at https://github.com/coreos/mayday/blob/master/mayday.go

In that case, there are three basic groups of packages:

go fmt correctly handles this behavior and will sort them correctly in each area.

One example of where cleanup should occur is this:

https://github.com/coreos/mayday/blob/master/mayday/plugins/docker/docker.go

Extremely low priority. Mainly just here for tracking purposes.