-
Notifications
You must be signed in to change notification settings - Fork 0
/
SublimeLinter.sublime-settings
38 lines (38 loc) · 1.58 KB
/
SublimeLinter.sublime-settings
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
// SublimeLinter Settings - User
{
// Set to true to print extra information in the console.
"debug": true,
// Provide extra paths to be searched when locating system executables.
"paths": {
"linux": [],
"osx": [ "/Users/jkoberg/server/bin"],
"windows": []
},
"linters": {
"gometalinter": {
"disable": false,
"args": [
// "--linter=vet:go tool vet -printfuncs=Infof,Debugf,Warningf,Errorf,Criticalf {path}/*.go:PATH:LINE:MESSAGE",
// "--disable=dupl",
// "--tests",
// "--cyclo-over=15",
"--config=/Users/jkoberg/temp/metaconfig.json",
//"--fast"
],
// "excludes": [],
// "ignore_match": [
// ".*possible formatting directive in debug call.*",
// ".*exported function (Test|Bench).*should have comment.*",
// ".*error return value not checked.*(Close|Infof|Debugf|Warningf|Errorf).*",
// ".*possible formatting directive in Error call.*",
// ".*comment on exported.*",
// ".*uses unkeyed fields.*",
// ".*should have comment.*",
// ".*bad syntax for struct tag pair.*",
// ".*bad syntax for struct tag key.*"
// ],
"executable": "/Users/jkoberg/server/bin/gometalinter",
"working_dir": "/Users/jkoberg/server"
},
},
}