Displaying 1 to 3 from 3 results

go-plus - An Enhanced Go Experience For The Atom Editor

  •    Javascript

gocode (and a few other tools, like gotype) work on .a files (i.e. the package object archive), and the way to keep these up to date is to run go install periodically. This ensures your autocomplete suggestions are kept up to date without having to resort to gocode set autobuild true 🎉.We are open to suggestions for detecting a package which is built with gb; please feel free to submit a pull request that detects a gb package without any explicit configuration and runs it.

gometalinter-linter - A Linter For Atom That Runs gometalinter

  •    Javascript

Aggregate and normalise the output of a whole bunch of Go linters.This is helpful if you would like to copy-paste the settings in as a starting point for further customization.

scopelint - scopelint checks for unpinned variables in go programs

  •    Go

scopelint checks for unpinned variables in go programs. In Go, the val variable in the above loops is actually a single variable. So in many case (like the above), using it makes for us annoying bugs.