From 7462bb55686b782a777015d6807cc6141f09e213 Mon Sep 17 00:00:00 2001 From: Radoslaw Smigielski Date: Sat, 25 Apr 2020 06:54:02 +0100 Subject: [PATCH] Sort available style constants We have a number of style constant names defined in completly random order, let's make a little bit of cleanup here. --- pkg/minikube/out/style_enum.go | 130 ++++++++++++++++----------------- 1 file changed, 65 insertions(+), 65 deletions(-) diff --git a/pkg/minikube/out/style_enum.go b/pkg/minikube/out/style_enum.go index b8cca45448..a495952f16 100644 --- a/pkg/minikube/out/style_enum.go +++ b/pkg/minikube/out/style_enum.go @@ -21,76 +21,76 @@ type StyleEnum int // All the Style constants available const ( - Happy StyleEnum = iota - SuccessType - FailureType - Celebration - Conflict - FatalType - Notice - Ready - Running - Provisioning - Restarting - Stopping - Stopped - Warning - Waiting - WaitingPods - Usage - Launch - Sad - ThumbsUp - ThumbsDown - Option - Command - LogEntry - Deleted - URL - Documentation - Issues - Issue - Check - ISODownload - FileDownload + AddonDisable = iota + AddonEnable Caching - StartingVM - StartingNone - Provisioner - Resetting - DeletingHost - Copying - Connectivity - Confused - Internet - Mounting Celebrate - ContainerRuntime - Docker - CRIO + Celebration + Check + Command + Conflict + Confused + Connectivity Containerd - Permissions - Enabling - Shutdown - Pulling - HealthCheck - Verifying - VerifyingNoLine - Kubectl - Meh + ContainerRuntime + Copying + CRIO + Deleted + DeletingHost + Docker + Documentation + DryRun Embarrassed + Empty + Enabling + FailureType + FatalType + FileDownload + Fileserver + Happy StyleEnum + HealthCheck + Internet + ISODownload + Issue + Issues + Kubectl + Launch + LogEntry + Meh + Mounting + MountOptions + New + Notice + Option + Pause + Permissions + Provisioner + Provisioning + Pulling + Ready + Resetting + Restarting + Running + Sad + Shrug + Shutdown + Sparkle + StartingNone + StartingVM + Stopped + Stopping + SuccessType + ThumbsDown + ThumbsUp Tip Unmount - MountOptions - Fileserver - Empty - Workaround - Sparkle - Pause Unpause - DryRun - AddonEnable - AddonDisable - Shrug - New + URL + Usage + Verifying + VerifyingNoLine + Waiting + WaitingPods + Warning + Workaround )