Add example of goimports -local

This commit is contained in:
Chris S. Kim 2022-03-28 10:10:52 -04:00 committed by kisunji
parent 8bd05b1fb0
commit 8b9387404d
1 changed files with 20 additions and 1 deletions

View File

@ -85,6 +85,25 @@ To build Consul, run `make dev`. In a few moments, you'll have a working
Go provides [tooling to apply consistent code formatting](https://golang.org/doc/effective_go#formatting).
If you make any changes to the code, run `gofmt -s -w` to automatically format the code according to Go standards.
##### Organizing Imports
Group imports using `goimports -local github.com/hashicorp/consul/` to keep [local packages](https://github.com/golang/tools/commit/ed69e84b1518b5857a9f4e01d1f9cefdcc45246e) in their own section.
Example:
```
import (
"context"
"fmt"
"net/http"
"github.com/hashicorp/go-cleanhttp"
"github.com/mitchellh/mapstructure"
"github.com/hashicorp/consul/api"
"github.com/hashicorp/consul/lib"
)
```
#### Updating Go Module Dependencies
If a dependency is added or change, run `go mod tidy` to update `go.mod` and `go.sum`.
@ -148,4 +167,4 @@ When you're ready to submit a pull request:
Some common changes that many PRs require are documented through checklists as
`checklist-*.md` files in [docs/](../docs/), including:
- [Adding config fields](../docs/config/checklist-adding-config-fields.md)
- [Adding config fields](../docs/config/checklist-adding-config-fields.md)