forked from m3db/m3db-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.metalinter.json
36 lines (36 loc) · 826 Bytes
/
.metalinter.json
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
{
"Linters": {
"unused": {
"Command": "unused -tags 'integration big adhoc'",
"Pattern": "PATH:LINE:COL:MESSAGE"
},
"gosimple": {
"Command": "gosimple -tags 'integration big adhoc'",
"Pattern": "PATH:LINE:COL:MESSAGE"
},
"badtime": {
"Command": "badtime -tags 'integration big adhoc'",
"Pattern": "PATH:LINE:COL:MESSAGE"
},
"importorder": {
"Command": "importorder -patterns=\"STDLIB github.com/m3db/m3db-operator github.com/m3db k8s.io EXTERNAL\"",
"Pattern": "PATH:LINE:MESSAGE"
}
},
"Enable": [
"varcheck",
"structcheck",
"goconst",
"ineffassign",
"unconvert",
"misspell",
"golint",
"gosimple",
"unused",
"badtime",
"maligned",
"importorder"
],
"Deadline": "3m",
"EnableGC": true
}