Add errcheck linter (#238)
* Add errcheck linter * Add config for 'fast' linters * Fix errcheck lint stuff * Fix errcheck lint
This commit is contained in:
parent
b91b3e729a
commit
8a36a7e89b
40 changed files with 186 additions and 98 deletions
15
linter-fast.json
Normal file
15
linter-fast.json
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"Vendor": true,
|
||||
"Cyclo": 12,
|
||||
"Deadline": "5m",
|
||||
"Enable": [
|
||||
"vetshadow",
|
||||
"gotype",
|
||||
"deadcode",
|
||||
"gocyclo",
|
||||
"ineffassign",
|
||||
"gas",
|
||||
"misspell",
|
||||
"errcheck"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue