@@ -46,7 +46,9 @@ func AddCommands(cmd *cobra.Command, dockerCli command.Cli) {
4646 registry .NewLoginCommand (dockerCli ),
4747 registry .NewLogoutCommand (dockerCli ),
4848 registry .NewSearchCommand (dockerCli ),
49+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
4950 system .NewVersionCommand (dockerCli ),
51+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
5052 system .NewInfoCommand (dockerCli ),
5153
5254 // management commands
@@ -64,6 +66,7 @@ func AddCommands(cmd *cobra.Command, dockerCli command.Cli) {
6466 manifest .NewManifestCommand (dockerCli ),
6567 network .NewNetworkCommand (dockerCli ),
6668 plugin .NewPluginCommand (dockerCli ),
69+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
6770 system .NewSystemCommand (dockerCli ),
6871 trust .NewTrustCommand (dockerCli ),
6972 volume .NewVolumeCommand (dockerCli ),
@@ -130,7 +133,9 @@ func AddCommands(cmd *cobra.Command, dockerCli command.Cli) {
130133 hide (image .NewSaveCommand (dockerCli )),
131134 //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
132135 hide (image .NewTagCommand (dockerCli )),
136+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
133137 hide (system .NewEventsCommand (dockerCli )),
138+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
134139 hide (system .NewInspectCommand (dockerCli )),
135140 )
136141}
0 commit comments