Go to file
dependabot[bot] bc354c02d0
chore(deps): bump github.com/make-go-great/color-go from 0.4.1 to 0.5.0 (#38)
Bumps [github.com/make-go-great/color-go](https://github.com/make-go-great/color-go) from 0.4.1 to 0.5.0.
- [Changelog](https://github.com/make-go-great/color-go/blob/main/CHANGELOG.md)
- [Commits](https://github.com/make-go-great/color-go/compare/v0.4.1...v0.5.0)

---
updated-dependencies:
- dependency-name: github.com/make-go-great/color-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-17 18:18:07 +07:00
.github chore: sync github action 2023-07-01 00:57:22 +07:00
cmd/gofimports feat: improve perf by use astFile for dstFile 2023-01-17 17:52:29 +07:00
internal feat: add stock mode (#37) 2023-07-10 20:41:08 +07:00
.gitignore feat: add profiler 2023-01-17 18:17:28 +07:00
.golangci.yml chore: sync golangci-lint 2023-06-29 10:55:02 +07:00
.goreleaser.yml chore: add github action, Makefile 2022-11-24 23:16:32 +07:00
CHANGELOG.md chore(changelog): generate v0.0.9 2023-07-10 20:42:00 +07:00
LICENSE chore: add MIT license 2022-11-24 23:16:50 +07:00
Makefile chore: golds add dark theme 2023-03-13 16:18:31 +07:00
README.md feat: add stock mode (#37) 2023-07-10 20:41:08 +07:00
go.mod chore(deps): bump github.com/make-go-great/color-go from 0.4.1 to 0.5.0 (#38) 2023-07-17 18:18:07 +07:00
go.sum chore(deps): bump github.com/make-go-great/color-go from 0.4.1 to 0.5.0 (#38) 2023-07-17 18:18:07 +07:00

README.md

gofimports

Go Go Reference

Group Go imports with my opinionated preferences.

First is standard. Then third party, then company if exist. The last is local.

Also main selling point of this tool is to handle imports only. So please run gofumpt or gofmt to format you files after running this tool.

Install

With Go version >= 1.16:

go install github.com/haunt98/gofimports/cmd/gofimports@latest

Usage

# Format ./internal with:
# - print impacted file (-l),
# - write to file (-w),
# - print diff (-d)
# - company prefix, split using comma (,)
gofimports -l -w -d --company github.com/make-go-great,github.com/haunt98 ./internal

# Format ./internal with:
# - write
# - stock mode, only split standard and non standard
gofimports -w --stock ./internal

Example result:

import (
    "fmt"

    "github.com/urfave/cli/v2"
    "github.com/pkg/diff"

    "github.com/make-go-great/color-go"

    "github.com/haunt98/gofimports/internal/imports"
)

Roadmap

  • Diff with color
  • Add profiling
  • Improve performance

Thanks