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