We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaac56e commit d7f6419Copy full SHA for d7f6419
3 files changed
.gitignore
@@ -7,7 +7,7 @@
7
*.dll
8
*.so
9
*.dylib
10
-menlo-cli
+
11
12
# Test binary, built with `go test -c`
13
*.test
.lefthook.yml
@@ -2,16 +2,12 @@ pre-commit:
2
parallel: true
3
commands:
4
golangci-lint:
5
- run: golangci-lint run --out-format line-number
+ run: golangci-lint run
6
glob: '*.go'
go-build:
run: go build -o /dev/null ./...
go-mod-tidy:
- run: go mod tidy
14
-
15
- go-test:
16
- run: go test -v ./...
17
- glob: '*.go'
+ run: go mod tidy
cmd/menlo-cli/main.go
@@ -0,0 +1,9 @@
1
+package main
+import (
+ "github.com/menloresearch/menlo-cli/internal/commands"
+)
+func main() {
+ commands.Execute()
+}
0 commit comments