-
Notifications
You must be signed in to change notification settings - Fork 1
/
.golangci.yml
73 lines (70 loc) · 1.69 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
run:
go: '1.19'
deadline: 5m
skip-files:
# Skip autogenerated files.
- ^.*\.(pb|y)\.go$
- test
output:
sort-results: true
linters:
enable:
- depguard
- gofumpt
- goimports
- revive
- misspell
- staticcheck
issues:
exclude-rules:
- path: _test.go
linters:
- errcheck
linters-settings:
staticcheck:
checks:
- all
- -SA1029
- -SA1019
depguard:
rules:
Main:
files:
- $all
deny:
- {pkg: "sync/atomic", desc: "Use go.uber.org/atomic instead of sync/atomic"}
- {pkg: "github.com/stretchr/testify/assert", desc: "Use github.com/stretchr/testify/require instead of github.com/stretchr/testify/assert"}
- {pkg: "github.com/go-kit/kit/log", desc: "Use github.com/go-kit/log instead of github.com/go-kit/kit/log"}
errcheck:
exclude: scripts/errcheck_excludes.txt
goimports:
local-prefixes: idas
gofumpt:
lang-version: "1.15"
extra-rules: false
module-path: github.com/MicroOps-cn/idas
revive:
rules:
- name: exported
arguments: ["disableStutteringCheck"]
- name: blank-imports
- name: context-as-argument
- name: dot-imports
- name: error-return
- name: error-strings
- name: error-naming
- name: if-return
- name: increment-decrement
- name: var-naming
severity: warning
disabled: false
arguments:
- [ "ID","OAuthGrantType" ] # AllowList
- name: var-declaration
- name: package-comments
- name: range
- name: receiver-naming
- name: time-naming
- name: unexported-return
- name: indent-error-flow
- name: errorf