Giter VIP home page Giter VIP logo

gfmt's Introduction

gfmt a go format tool

gfmt rely on gofmt and better than goimports and gofmt, it'll rearrange all packages import and move into different groups. If your teams using difference IDE and always imports not arrange, maybe gfmt will be your first choice. it's base on execute command gofmt -s -w and then to format your imports.

Install

go install github.com/athxx/gfmt

How to use

# gfmt [file or path]
gfmt .

What different with "goimports" and "gofmt"

goimport and gofmt will only format code but not align imports and groups packages

but gfmt will format and group up package

# goimport and gofmt would not align
package main

import (
	"fmt"
	//"strconv"
	"github.com/gorilla/mux"
	"strings"
)

func main() {
	var _ = mux.NewRouter()
	fmt.Println(strings.ToUpper("Hello, world!"))
}

but gfmt

package main

import (
	"fmt"
	"strings"

	"github.com/gorilla/mux"

	// "strconv"     <- all annotation line will group up 
)

func main() {
	var _ = mux.NewRouter()
	fmt.Println(strings.ToUpper("Hello, world!"))
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.