You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
563 B

  1. package cmd
  2. import "github.com/urfave/cli/v2"
  3. var gitignore = `# Created by .ignore support plugin (hsz.mobi)
  4. ### Example user template template
  5. ### Example user template
  6. # IntelliJ project files
  7. .idea
  8. *.iml
  9. out
  10. gen
  11. /runtime
  12. ### Go template
  13. # Binaries for programs and plugins
  14. *.exe
  15. *.exe~
  16. *.dll
  17. *.so
  18. *.dylib
  19. # Test binary, built with 'go test -c\'
  20. *.test
  21. # Output of the go coverage tool, specifically when used with LiteIDE
  22. *.out
  23. # Dependency directories (remove the comment below to include it)
  24. # vendor/`
  25. func New(c *cli.Context) error {
  26. return nil
  27. }