syzkaller/.gometalinter.json
shankarapailoor 6a60a19530 tools/syz-trace2syz: add tool to convert strace output to programs
* fixing weird merge error

* fixing presubmit

* fixing presubmit

* removing parsing code because of -Xraw option

* fix presubmit

* update

* deleting vma_call_handlers as we are currently skipping most vma calls. This simplifies memory_tracker as we don't need to keep track of vma allocations

* removing custom handling of bpf_instruction union

* removing ifconf parsing

* update

* removed all expression types and replaced them with constant types. removing ipv6_addr parsing while -Xraw is getting fixed. Removing constants.go

* removing ipv6 parsing

* presubmit

* moving direction check from ipv4_addr out to genUnion

* removing code that parses kcov

* removing redundant test

* removing custom code in generate unions to fill ipv4_addr

* proggen: changing order of imports to make external packages import first

fixing presubmit

* changing log messages to lower case to be consistent with other packages.

* removing pointer type and simplifying memory_tracker

removing comment

* moving context and return_cache to seaparate files

* deleting default argument generation when we should probably throw an error
2018-12-06 16:25:37 +01:00

49 lines
971 B
JSON

{
"vendor": true,
"tests": true,
"deadline": "9m",
"sort": ["path", "line"],
"minconstlength": 7,
"linelength": 120,
"cyclo": 24,
"duplthreshold": 60,
"skip": [
"pkg/kd",
"pkg/ifuzz/generated",
"sys/akaros/gen",
"sys/freebsd/gen",
"sys/fuchsia/gen",
"sys/linux/gen",
"sys/netbsd/gen",
"sys/openbsd/gen",
"sys/windows/gen",
"sys/test/gen",
"sys/trusty/gen"
],
"enable": [
"gofmt",
"golint",
"structcheck",
"megacheck",
"unconvert",
"deadcode",
"goconst",
"unused",
"gosimple",
"varcheck",
"misspell",
"gocyclo",
"vet",
"vetshadow",
"lll"
],
"exclude": [
"(sys/.*/init.*|sys/targets/common.go).* don't use ALL_CAPS in Go names",
"(tools/syz-trace2syz/parser/(lex|strace).go)",
"exported .* should have comment",
"comment on .* should be of the form",
"declaration of \"err\" shadows",
"(pkg/csource/generated.go|pkg/report/linux.go|pkg/build/linux_generated.go).* line is [0-9]+ characters"
]
}