GithubHelp home page GithubHelp logo

Comments (2)

daixiang0 avatar daixiang0 commented on September 26, 2024

Now gci foucs on import package group since i do not want to replace goimports. In this way, i recommend that you call goimports first.

from gci.

MatthewDolan avatar MatthewDolan commented on September 26, 2024

Running goimports first does not resolve this issue.

In both examples below, the situation might be unexpected (probably recommended that the code does something different), but since the code is valid Go and valid go after having run goimports, I would expect this formatter to not make the code invalid.

This feels like a bug.

Example 1

package example

import (
	a "github.com/example/nested"
	b "github.com/example/nested"
)

Running goimports is a noop.

> goimports -d .

This code is valid, compiles, and passes goimports.

Running gci rewrites the file to be invalid.

gci -d .      
diff -u example.go.orig example.go
--- example.go.orig	2020-09-01 08:44:57.000000000 -0700
+++ example.go	2020-09-01 08:44:57.000000000 -0700
@@ -2,7 +2,7 @@
 
 import (
 	a "github.com/example/nested"
-	b "github.com/example/nested"
+	a "github.com/example/nested"
 )

Example 2

This also comes up when one import has an _ and the second does not.

package example

import (
	_ "github.com/example/nested"

	"github.com/example/nested"
)

goimports does not change this file.

> goimports -d .

Running gci rewrites the file to be invalid.

> gci -d .
diff -u example.go.orig example.go
--- example.go.orig	2020-09-01 08:48:58.000000000 -0700
+++ example.go	2020-09-01 08:48:58.000000000 -0700
@@ -2,8 +2,7 @@
 
 import (
 	_ "github.com/example/nested"
-
-	"github.com/example/nested"
+	_ "github.com/example/nested"
 )

from gci.

Related Issues (20)

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.