Skip to content

Commit 19427da

Browse files
authored
Merge pull request #7 from bestpilotingalaxy/build-lint-tools
added gloangci-lint && Makefile
2 parents b0a71b5 + a9e75e1 commit 19427da

File tree

5 files changed

+178
-11
lines changed

5 files changed

+178
-11
lines changed

.golangci.yml

+133
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
linters-settings:
2+
dupl:
3+
threshold: 100
4+
funlen:
5+
lines: 100
6+
statements: 50
7+
gci:
8+
local-prefixes: github.com/golangci/golangci-lint
9+
goconst:
10+
min-len: 2
11+
min-occurrences: 2
12+
gocritic:
13+
enabled-tags:
14+
- diagnostic
15+
- experimental
16+
- opinionated
17+
- performance
18+
- style
19+
disabled-checks:
20+
- dupImport # https://github.com/go-critic/go-critic/issues/845
21+
- ifElseChain
22+
- octalLiteral
23+
- whyNoLint
24+
- wrapperFunc
25+
gocyclo:
26+
min-complexity: 15
27+
goimports:
28+
local-prefixes: github.com/golangci/golangci-lint
29+
golint:
30+
min-confidence: 0
31+
gomnd:
32+
settings:
33+
mnd:
34+
# don't include the "operation" and "assign"
35+
checks: [argument, case, condition, return]
36+
govet:
37+
check-shadowing: true
38+
settings:
39+
printf:
40+
funcs:
41+
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
42+
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
43+
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
44+
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
45+
lll:
46+
line-length: 140
47+
maligned:
48+
suggest-new: true
49+
misspell:
50+
locale: US
51+
nolintlint:
52+
allow-leading-space: true # don't require machine-readable nolint directives (i.e. with no leading space)
53+
allow-unused: false # report any unused nolint directives
54+
require-explanation: false # don't require an explanation for nolint directives
55+
require-specific: false # don't require nolint directives to be specific about which linter is being skipped
56+
57+
linters:
58+
# please, do not use `enable-all`: it's deprecated and will be removed soon.
59+
# inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint
60+
disable-all: true
61+
enable:
62+
- bodyclose
63+
- deadcode
64+
- depguard
65+
- dogsled
66+
- dupl
67+
- errcheck
68+
- exportloopref
69+
- exhaustive
70+
- funlen
71+
- gochecknoinits
72+
- goconst
73+
- gocritic
74+
- gocyclo
75+
- gofmt
76+
- goimports
77+
- golint
78+
- gomnd
79+
- goprintffuncname
80+
- gosec
81+
- gosimple
82+
- govet
83+
- ineffassign
84+
- lll
85+
- misspell
86+
- nakedret
87+
- noctx
88+
- nolintlint
89+
- rowserrcheck
90+
- staticcheck
91+
- structcheck
92+
- stylecheck
93+
- typecheck
94+
- unconvert
95+
- unparam
96+
- unused
97+
- varcheck
98+
- whitespace
99+
100+
# don't enable:
101+
# - asciicheck
102+
# - scopelint
103+
# - gochecknoglobals
104+
# - gocognit
105+
# - godot
106+
# - godox
107+
# - goerr113
108+
# - interfacer
109+
# - maligned
110+
# - nestif
111+
# - prealloc
112+
# - testpackage
113+
# - revive
114+
# - wsl
115+
116+
issues:
117+
# Excluding configuration per-path, per-linter, per-text and per-source
118+
exclude-rules:
119+
- path: _test\.go
120+
linters:
121+
- gomnd
122+
123+
run:
124+
modules-download-mode: mod # ignore linter argue 'mod' is a VALID option
125+
skip-dirs:
126+
- test/testdata_etc
127+
- internal/cache
128+
- internal/renameio
129+
- internal/robustio
130+
skip-files:
131+
- ".*_test\\.go$"
132+
- ".*_mock\\.go$"
133+
- ".*\\.pb\\.go$"

Makefile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
APP_NAME = server
2+
3+
COMMIT=$(shell git rev-parse --short HEAD)
4+
BRANCH=$(shell git rev-parse --abbrev-ref HEAD)
5+
TAG=$(shell git describe --tags |cut -d- -f1)
6+
7+
LDFLAGS = -ldflags "-X main.gitTag=${TAG} -X main.gitCommit=${COMMIT} -X main.gitBranch=${BRANCH}"
8+
9+
.PHONY: help clean dep build lint
10+
11+
.DEFAULT_GOAL := help
12+
13+
help: ## Display this help screen.
14+
@echo "Makefile available targets:"
15+
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " * \033[36m%-15s\033[0m %s\n", $$1, $$2}'
16+
17+
dep: ## Download the dependencies.
18+
go mod download
19+
20+
build: dep ## Build pgcenter executable.
21+
mkdir -p ./bin
22+
CGO_ENABLED=0 GOOS=linux GOARCH=${GOARCH} go build ${LDFLAGS} -o bin/${APP_NAME} ./cmd/server
23+
24+
clean: ## Clean build directory.
25+
rm -f ./bin/${APP_NAME}
26+
rmdir ./bin
27+
28+
lint: dep ## Lint the source files
29+
golangci-lint run --timeout 5m -E golint
30+
gosec -quiet ./...

config/config.go

+2-9
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ import (
1212

1313
var once sync.Once
1414

15-
// ConnHandler ...
16-
type ConnHandler struct {
17-
MaxMsgSize int
18-
ReadDeadline int
19-
}
20-
2115
// Server configuration
2216
type Server struct {
2317
Port string `env:"SERVER_PORT"`
@@ -26,20 +20,19 @@ type Server struct {
2620
// Config ...
2721
type Config struct {
2822
Server
29-
ConnHandler
3023
LogLevel string `env:"LOG_LEVEL"`
3124
}
3225

3326
// New creates config struct and fills with env variables
3427
func New() *Config {
3528
ctx := context.Background()
3629
c := &Config{}
37-
proccess := func() {
30+
process := func() {
3831
if err := envconfig.Process(ctx, c); err != nil {
3932
log.Fatal(err)
4033
}
4134
}
42-
once.Do(proccess)
35+
once.Do(process)
4336
return c
4437
}
4538

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ require (
77
github.com/fasthttp/websocket v1.4.3 // indirect
88
github.com/gofiber/fiber/v2 v2.16.0
99
github.com/gofiber/websocket/v2 v2.0.7
10+
github.com/google/go-cmp v0.5.5 // indirect
1011
github.com/klauspost/compress v1.13.1 // indirect
1112
github.com/savsgio/gotils v0.0.0-20210617111740-97865ed5a873 // indirect
1213
github.com/sethvargo/go-envconfig v0.3.5
1314
github.com/sirupsen/logrus v1.8.1
15+
github.com/stretchr/testify v1.7.0 // indirect
1416
github.com/valyala/fasthttp v1.28.0 // indirect
1517
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
18+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
1619
)

go.sum

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu
22
github.com/andybalholm/brotli v1.0.2/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=
33
github.com/andybalholm/brotli v1.0.3 h1:fpcw+r1N1h0Poc1F/pHbW40cUm/lMEQslZtCkBQ0UnM=
44
github.com/andybalholm/brotli v1.0.3/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
5+
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
56
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
67
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
78
github.com/fasthttp/websocket v0.0.0-20200320073529-1554a54587ab/go.mod h1:smsv/h4PBEBaU0XDTY5UwJTpZv69fQ0FfcLJr21mA6Y=
@@ -13,8 +14,9 @@ github.com/gofiber/fiber/v2 v2.16.0/go.mod h1:iftruuHGkRYGEXVISmdD7HTYWyfS2Bh+Dk
1314
github.com/gofiber/websocket/v2 v2.0.7 h1:ZRUMTzc2VQkSMWBMF52YthWbAd9gD7LfzHCV7T1PThE=
1415
github.com/gofiber/websocket/v2 v2.0.7/go.mod h1:Ts9Bxcbz6BK1dap3flpT9Y0KHKTOh5sBDoDAB9+PzM0=
1516
github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
16-
github.com/google/go-cmp v0.4.1 h1:/exdXoGamhu5ONeUJH0deniYLWYvQwW66yvlfiiKTu0=
1717
github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
18+
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
19+
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
1820
github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
1921
github.com/klauspost/compress v1.8.2/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
2022
github.com/klauspost/compress v1.10.4/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=
@@ -32,8 +34,10 @@ github.com/sethvargo/go-envconfig v0.3.5 h1:dXU6y76SACA7tB3PFs+7HJuRvZCixYRUinuu
3234
github.com/sethvargo/go-envconfig v0.3.5/go.mod h1:XZ2JRR7vhlBEO5zMmOpLgUhgYltqYqq4d4tKagtPUv0=
3335
github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=
3436
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
35-
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
37+
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
3638
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
39+
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
40+
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
3741
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
3842
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
3943
github.com/valyala/fasthttp v1.9.0/go.mod h1:FstJa9V+Pj9vQ7OJie2qMHdwemEDaDiSdBnvPM1Su9w=
@@ -64,3 +68,7 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
6468
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
6569
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
6670
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
71+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
72+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
73+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
74+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)