Skip to content

Commit

Permalink
Ignore long line lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fkorotkov committed Apr 4, 2023
1 parent 9884590 commit 5d8950a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/commands/prepare/prepare.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ func NewCommand() *cobra.Command {
command.PersistentFlags().StringVarP(&config.SSHUsername, "username", "", config.SSHUsername, "SSH username")
command.PersistentFlags().StringVarP(&config.SSHPassword, "password", "", config.SSHPassword, "SSH password")
command.PersistentFlags().BoolVarP(&config.Headless, "headless", "", config.Headless, "Run VM in headless mode")
//nolint:lll
command.PersistentFlags().BoolVarP(&config.AlwaysPull, "always-pull", "", config.AlwaysPull, "Always pull the latest version of the Tart image")
command.PersistentFlags().BoolVarP(&config.Softnet, "softnet", "", config.Softnet, "Enable softnet")
command.PersistentFlags().Uint64VarP(&config.CPU, "cpu", "", config.CPU, "Override default image CPU configuration")
//nolint:lll
command.PersistentFlags().Uint64VarP(&config.Memory, "memory", "", config.Memory, "Override default image memory (in Mb) configuration")

return command
Expand Down

0 comments on commit 5d8950a

Please sign in to comment.