clean up auto generated comments

This commit is contained in:
onyx-and-iris 2025-05-29 13:11:32 +01:00
parent f249cc2a4d
commit b18a19ee62
2 changed files with 0 additions and 20 deletions

View File

@ -28,16 +28,6 @@ This is useful for reviewing which files or directories are currently excluded f
func init() {
rootCmd.AddCommand(listCmd)
// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// listCmd.PersistentFlags().String("foo", "", "A help for foo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// listCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
// runListCommand is the function that will be executed when the list command is called
@ -54,6 +44,5 @@ func runListCommand(f io.Reader, _ []string) error {
return fmt.Errorf("error reading exclude file: %w", err)
}
// You can add more functionality as needed
return nil
}

View File

@ -53,13 +53,4 @@ func Execute() {
}
func init() {
// Here you will define your flags and configuration settings.
// Cobra supports persistent flags, which, if defined here,
// will be global for your application.
// rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.exclude.yaml)")
// Cobra also supports local flags, which will only run
// when this action is called directly.
// rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}