Skip to content

leonklingele/gochecknoglobals

 
 

Repository files navigation

gochecknoglobals

Build Status Codecov Go Report Card

Check that no globals are present in Go code.

Why

Global variables are an input to functions that is not visible in the functions signature, complicate testing, reduces readability and increase the complexity of code.

https://peter.bourgon.org/blog/2017/06/09/theory-of-modern-go.html https://twitter.com/davecheney/status/871939730761547776

Install

go get 4d63.com/gochecknoglobals

Usage

gochecknoglobals
gochecknoglobals ./...
gochecknoglobals [path] [path] [path] [etc]

Add -t to include tests.

gochecknoglobals -t [path]

Note: Paths are only inspected recursively if the Go /... recursive path suffix is appended to the path.

About

Check that no globals are present in Go code.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%