forked from ray-project/kuberay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
91 lines (91 loc) · 1.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
linters-settings:
gofmt:
simplify: true
gosec:
excludes:
- G601
ginkgolinter:
forbid-focus-container: true
goimports:
local-prefixes: github.com/ray-project/kuberay/ray-operator
misspell:
locale: US
nolintlint:
require-explanation: true
require-specific: true
revive:
ignore-generated-header: true
rules:
- name: blank-imports
- name: context-as-argument
- name: context-keys-type
- name: empty-block
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: exported
disabled: true
- name: if-return
- name: increment-decrement
- name: indent-error-flow
- name: package-comments
- name: range
- name: receiver-naming
- name: redefines-builtin-id
- name: superfluous-else
- name: time-naming
- name: unexported-return
- name: unreachable-code
- name: unused-parameter
- name: var-declaration
- name: var-naming
exclude:
- "**/ray-operator/apis/config/v1alpha1/*.go"
- "**/ray-operator/apis/ray/v1alpha1/*.go"
- "**/ray-operator/apis/ray/v1/*.go"
arguments:
- ["ID", "JSON", "HTTP", "IP"] # AllowList
- [] # DenyList
- - upperCaseConst: true
gocyclo:
min-complexity: 15
govet:
enable:
- fieldalignment
lll:
line-length: 120
linters:
enable:
- asciicheck
- errcheck
- errorlint
- ginkgolinter
# - gocyclo
- gofmt
- gofumpt
- goimports
- gosec
- gosimple
- govet
- ineffassign
# - lll
- makezero
- misspell
- nilerr
- noctx
- nolintlint
- predeclared
- revive
- staticcheck
- typecheck
- unconvert
- unparam
- unused
- wastedassign
disable-all: true
issues:
max-issues-per-linter: 0
max-same-issues: 0
run:
timeout: 3m