-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.golangci.yml
77 lines (74 loc) · 2.04 KB
/
.golangci.yml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
run:
timeout: 5m
modules-download-mode: readonly
allow-parallel-runners: true
linters:
disable-all: true
enable:
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- unused
- gofmt
- goimports
- misspell
- revive
linters-settings:
gofmt:
simplify: true
goimports:
local-prefixes: github.com/FreePeak/db-mcp-server
govet:
revive:
rules:
- name: var-naming
severity: warning
disabled: false
- name: exported
severity: warning
disabled: false
errcheck:
# Report about not checking of errors in type assertions: `a := b.(MyStruct)`.
check-type-assertions: true
# Report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`.
check-blank: true
# List of functions to exclude from error checking (useful for os.Setenv)
exclude-functions:
- os.Setenv
issues:
exclude-use-default: false
max-issues-per-linter: 0
max-same-issues: 0
exclude-dirs:
- vendor/
exclude:
- "exported \\w+ (\\S*['.]*)([a-zA-Z'.*]*) should have comment or be unexported"
# Excluding the specific errors that are reported but that we can't reproduce locally
exclude-rules:
- path: internal/delivery/mcp/tool_registry.go
text: "Error return value of `tr.registerTool` is not checked"
- path: internal/delivery/mcp/tool_registry.go
text: "Error return value of `tr.createToolAlias` is not checked"
- path: cmd/server/main.go
text: "Error return value of `os.Setenv` is not checked"
- path: _test\.go$
linters:
- errcheck
- path: pkg/dbtools/dbtools.go
text: "func `_loadConfigFromFile` is unused"
linters:
- unused
- path: pkg/dbtools/dbtools.go
text: "func `_getEnv` is unused"
linters:
- unused
- path: pkg/dbtools/dbtools.go
text: "func `_getIntEnv` is unused"
linters:
- unused
- path: pkg/dbtools/dbtools.go
text: "func `_loadConfigFromEnv` is unused"
linters:
- unused