lingsamuel commented on issue #879:
URL:
https://github.com/apache/apisix-ingress-controller/issues/879#issuecomment-1047626902
`goimports-reviser` can sort project packages as a separate group, e.g.:
```
package testdata
import (
"bytes"
"log"
"github.com/abcabc/abcabc"
"github.com/pkg/errors"
"github.com/incu6us/goimports-reviser/testdata/innderpkg"
)
```
instead of
```
package testdata
import (
"bytes"
"log"
"github.com/abcabc/abcabc"
"github.com/incu6us/goimports-reviser/testdata/innderpkg"
"github.com/pkg/errors"
)
```
IIRC `gofmt` or `goimports` can't do this.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]