UPDATE: fmt cleanup.

This commit is contained in:
Thomas M. Edwards 2021-02-10 16:21:34 -06:00
parent 9ffb633ac8
commit 33a6da381c
7 changed files with 8 additions and 0 deletions

View file

@ -11,6 +11,7 @@ import (
"log"
"os"
"path/filepath"
// internal packages
"github.com/tmedwards/tweego/internal/option"
// external packages

View file

@ -15,6 +15,7 @@ import (
"os"
"path/filepath"
"strings"
// external packages
"github.com/Masterminds/semver/v3"
)

View file

@ -10,6 +10,7 @@ import (
// standard packages
"bytes"
"regexp"
// external packages
"golang.org/x/net/html"
)

1
io.go
View file

@ -17,6 +17,7 @@ import (
"os"
"runtime"
"unicode/utf8"
// external packages
"github.com/paulrosania/go-charset/charset"
_ "github.com/paulrosania/go-charset/data" // import the charset data

View file

@ -11,6 +11,7 @@ import (
"fmt"
"regexp"
"strings"
// external packages
"golang.org/x/text/unicode/norm"
)

View file

@ -14,9 +14,11 @@ import (
"path/filepath"
"strconv"
"strings"
// internal packages
twee2 "github.com/tmedwards/tweego/internal/twee2compat"
twlex "github.com/tmedwards/tweego/internal/tweelexer"
// external packages
"golang.org/x/net/html"
)

View file

@ -12,6 +12,7 @@ import (
"math"
"os"
"sort"
// external packages
"github.com/paulrosania/go-charset/charset"
)