Skip to content

Commit

Permalink
fix(pkg/cmd/init/init.go): try to skip unused-parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Wabri committed Aug 1, 2024
1 parent fdafddc commit 9b5c11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/init/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func NewCmdInit() *cobra.Command {
cmd := &cobra.Command{
Use: "init [flags]",
Short: "Initialize daje on your system",
RunE: func(cmd *cobra.Command, args []string) error {
RunE: func(cmd *cobra.Command, args []string) error { //nolint:varcheck,nolintlint
return submitAction()
},
}
Expand Down

0 comments on commit 9b5c11e

Please sign in to comment.