goimports

command module
v0.0.0-...-91b0aaf Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 31, 2021 License: BSD-3-Clause Imports: 12 Imported by: 0

README

This tool updates your Go import lines, adding missing ones and removing unreferenced ones.

 $ go get golang.org/x/tools/cmd/goimports

 Note the new location. This project has moved to the official
 go.tools repo. Pull requests here will no longer be accepted.
 Please use the Go process: http://golang.org/doc/contribute.html

It acts the same as gofmt (same flags, etc) but in addition to code formatting, also fixes imports.

See usage and editor integration notes, now moved elsewhere:

http://godoc.org/golang.org/x/tools/cmd/goimports

This specific fork of bradfitz goimports cleans all blank lines in imports block before formatting

So, usually when an import is added by the IDE it adds it at the top of the dependency block. Like this:

import (
    "github.com/guyincogninto/costumes"
    "bytes"
    "flag"
    "fmt"

    "github.com/elbarto/graffiti"
)

Current go imports -w option formats and leave it like this:

import (
    "bytes"
    "flag"
    "fmt"

    "github.com/guyincogninto/costumes"

    "github.com/elbarto/graffiti"
)

Maybe I'm a bit fussy, but it's not desirable for me. This fork will leave the thing like this:

import (
    "bytes"
    "flag"
    "fmt"

    "github.com/elbarto/graffiti"
    "github.com/guyincogninto/costumes"
)

Happy hacking!

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL