Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

mbilski/exhaustivestruct

Repository files navigation

exhaustivestruct

Go Report Card

exhaustivestruct is a go static analysis tool to find structs that have uninitialized fields.

⚠️ This linter is meant to be used only for special cases. It is not recommended to use it for all files in a project.

Installation

go get -u github.com/mbilski/exhaustivestruct/cmd/exhaustivestruct

Usage

Usage: exhaustivestruct [-flag] [package]

Flags:
  -struct_patterns string
      This is a comma separated list of expressions to match struct packages and names

Example

type User struct {
  Name string
  Age int
}

var user = User{ // fails with "Age is missing in User"
  Name: "John",
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages