Skip to content

Commit b9072cb

Browse files
committed
bring back tools.go
1 parent 1aaa822 commit b9072cb

4 files changed

Lines changed: 16 additions & 11 deletions

File tree

devenv.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"devenv": {
44
"locked": {
55
"dir": "src/modules",
6-
"lastModified": 1724504184,
6+
"lastModified": 1724763216,
77
"owner": "cachix",
88
"repo": "devenv",
9-
"rev": "51338b58fd666f448db7486ec145dbe52db9b829",
10-
"treeHash": "cedf6d41b00189dfd5132772cb5f35fcb10a7f7b",
9+
"rev": "1e4ef61205b9aa20fe04bf1c468b6a316281c4f1",
10+
"treeHash": "5a8fdb7f5c9a192415fb9f16b950bbd0c9ea5f95",
1111
"type": "github"
1212
},
1313
"original": {
@@ -112,11 +112,11 @@
112112
"nixpkgs-stable": "nixpkgs-stable"
113113
},
114114
"locked": {
115-
"lastModified": 1724440431,
115+
"lastModified": 1724763886,
116116
"owner": "cachix",
117117
"repo": "pre-commit-hooks.nix",
118-
"rev": "c8a54057aae480c56e28ef3e14e4960628ac495b",
119-
"treeHash": "40ee1da550348c789ed9503eea365533a618506c",
118+
"rev": "1cd12de659fab215624c630c37d1c62aa2b7824e",
119+
"treeHash": "9e508944587ccf26e8eb9e64392884a1a53fbf1d",
120120
"type": "github"
121121
},
122122
"original": {

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/kefniark/mango-sql
22

3-
go 1.22.5
4-
5-
toolchain go1.22.6
3+
go 1.23.0
64

75
require (
86
github.com/Masterminds/squirrel v1.5.4

justfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ build:
22
CGO_ENABLED=0 go build -ldflags="-s -w" -o bin/mangosql ./cmd/mangosql
33

44
format:
5-
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3
65
golangci-lint run --fix ./...
76

87
lint:
9-
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3
108
golangci-lint run ./...
119

1210
docs:

tools.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
//go:build tools
2+
// +build tools
3+
4+
package tools
5+
6+
import (
7+
_ "github.com/boumenot/gocover-cobertura"
8+
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
9+
)

0 commit comments

Comments
 (0)