Go to file
sudo pacman -Syu dd80eab9b5 chore(changelog): generate v0.0.11 2024-04-07 14:56:48 +07:00
.github chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#60) 2024-02-12 19:18:59 +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.11 2024-04-07 14:56:48 +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 chore: add badges 2023-09-23 14:10:05 +07:00
go.mod chore(deps): bump golang.org/x/tools from 0.19.0 to 0.20.0 (#67) 2024-04-07 13:09:41 +07:00
go.sum chore(deps): bump golang.org/x/tools from 0.19.0 to 0.20.0 (#67) 2024-04-07 13:09:41 +07:00

README.md

gofimports

Go Go Reference Latest Version

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