alecthomas / SublimeLinter-contrib-gometalinter

SublimeLinter plugin for gometalinter
MIT License
47 stars 13 forks source link

Spawns and orphans conhost.exe and dupl.exe #3

Closed NotTheEconomist closed 8 years ago

NotTheEconomist commented 8 years ago

After an hour-long session of frequent lints, I open task manager on my Windows7 system to find it absolutely FLOODED with conhost.exe and dupl.exe (with a few golint, gocyclo, aligncheck, gocode, gotype, structcheck, varcheck, etc...). Closing SublimeText does not remove these processes, I had to run

C:\ taskkill /F /IM dupl.exe
C:\ taskkill /F /IM conhost.exe /FI "USERNAME eq MYUSERNAME"
NotTheEconomist commented 8 years ago

Whoops, this should really be on alecthomas/gometalinter -- I'll raise the issue there! It seems dupl.exe is exceeding the deadline (and seems to be running forever). Running dupl on its own with the default flags (-plumbing -t 50 ./*.go) causes a panic.