-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprecommit_trial.sh
executable file
·58 lines (46 loc) · 1.49 KB
/
precommit_trial.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Format all files, and sort go mod
echo "====Format & Sync===="
go work sync
current_dir=$(pwd)
for i in $(go list -m -f '{{.Dir}}')
do
cd $i
go fmt
go mod tidy
# go install golang.org/x/tools/cmd/goimports@latest
goimports -w .
cd $current_dir
done
# Test all packages
echo "====Test===="
go test $(go list -m) -cover
echo "====Health & Standards===="
# Run standard health checks
go vet $(go list -m)
# Stricter linting
# go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck $(go list -m)
# Run Even stricter linting
# go install -v github.com/go-critic/go-critic/cmd/gocritic@latest
gocritic check $(go list -m)
echo "====Error handling===="
# Identifies any non-exhaustive case statements
# go install github.com/nishanths/exhaustive/cmd/exhaustive@latest
exhaustive $(go list -m)
# Check for potential Nil panics
# nilaway $(go list -m)
echo "====Performance===="
# Identifies areas where pre-allocating slices could improve performance
# go install github.com/alexkohler/prealloc@latest
prealloc $(go list -m)
echo "====Maintainability===="
# Detects frequently used strings which could be constants
# go get github.com/jgautheron/goconst/cmd/goconst
goconst -min-occurrences 5 ./...
# Identifies mixed pointer receivers to an interface
# go install github.com/nikolaydubina/smrcptr@latest
smrcptr $(go list -m)
echo "====Complexity===="
# Limit Cognitive complexity
# go install github.com/jgautheron/goconst/cmd/goconst@latest
gocognit -over 15 -top 10 $(go list -m -f '{{.Dir}}')