1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-15 00:15:32 +02:00

run gofmt

This commit is contained in:
Anthony HAMON
2018-08-26 02:20:01 +02:00
parent 2d9f7009fa
commit f6ab11e4ee
5 changed files with 5 additions and 5 deletions

View File

@ -5,11 +5,11 @@ import (
"io/ioutil" "io/ioutil"
"os" "os"
"github.com/sirupsen/logrus"
"github.com/jesseduffield/lazygit/pkg/commands" "github.com/jesseduffield/lazygit/pkg/commands"
"github.com/jesseduffield/lazygit/pkg/config" "github.com/jesseduffield/lazygit/pkg/config"
"github.com/jesseduffield/lazygit/pkg/gui" "github.com/jesseduffield/lazygit/pkg/gui"
"github.com/jesseduffield/lazygit/pkg/i18n" "github.com/jesseduffield/lazygit/pkg/i18n"
"github.com/sirupsen/logrus"
) )
// App struct // App struct

View File

@ -7,9 +7,9 @@ import (
"os/exec" "os/exec"
"strings" "strings"
"github.com/sirupsen/logrus"
"github.com/jesseduffield/gocui" "github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/utils" "github.com/jesseduffield/lazygit/pkg/utils"
"github.com/sirupsen/logrus"
gitconfig "github.com/tcnksm/go-gitconfig" gitconfig "github.com/tcnksm/go-gitconfig"
gogit "gopkg.in/src-d/go-git.v4" gogit "gopkg.in/src-d/go-git.v4"
) )

View File

@ -5,8 +5,8 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/sirupsen/logrus"
"github.com/jesseduffield/lazygit/pkg/test" "github.com/jesseduffield/lazygit/pkg/test"
"github.com/sirupsen/logrus"
) )
func newDummyLog() *logrus.Logger { func newDummyLog() *logrus.Logger {

View File

@ -15,12 +15,12 @@ import (
// "strings" // "strings"
"github.com/sirupsen/logrus"
"github.com/golang-collections/collections/stack" "github.com/golang-collections/collections/stack"
"github.com/jesseduffield/gocui" "github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/commands" "github.com/jesseduffield/lazygit/pkg/commands"
"github.com/jesseduffield/lazygit/pkg/config" "github.com/jesseduffield/lazygit/pkg/config"
"github.com/jesseduffield/lazygit/pkg/i18n" "github.com/jesseduffield/lazygit/pkg/i18n"
"github.com/sirupsen/logrus"
) )
// OverlappingEdges determines if panel edges overlap // OverlappingEdges determines if panel edges overlap

View File

@ -1,9 +1,9 @@
package i18n package i18n
import ( import (
"github.com/sirupsen/logrus"
"github.com/cloudfoundry/jibber_jabber" "github.com/cloudfoundry/jibber_jabber"
"github.com/nicksnyder/go-i18n/v2/i18n" "github.com/nicksnyder/go-i18n/v2/i18n"
"github.com/sirupsen/logrus"
"golang.org/x/text/language" "golang.org/x/text/language"
) )