Skip to content

Commit

Permalink
added LICENSE file to the list of ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
inadarei committed Dec 15, 2017
1 parent ccfa20e commit 2f6b078
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,4 @@
// Place your settings in this file to overwrite default and user settings.
{
"go.formatTool": "gofmt",
}
5 changes: 3 additions & 2 deletions justgo.go
Expand Up @@ -21,15 +21,16 @@ func init() {
nonProblematicFiles = map[string]bool{
".git": false,
".gitignore": false,
"justgo": false,
"justgo": false,
"LICENSE": false,
"README.md": true,
}
}

func main() {
app := cli.NewApp()
app.Name = "justgo"
app.Version = "1.1.0"
app.Version = "1.1.2"
app.Usage = "create a new skeleton project for a Go-based API [micro]service"
app.UsageText = app.Name + " <path>"
app.ArgsUsage = "path"
Expand Down

0 comments on commit 2f6b078

Please sign in to comment.