summaryrefslogtreecommitdiffstats
path: root/hugofs/files
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-02 13:23:25 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-03 13:12:58 +0100
commitd90e37e0c6e812f9913bf256c9c81aa05b7a08aa (patch)
tree7b1b14464eefec1188ca2eed53c64e4823453cc9 /hugofs/files
parent32471b57bde51c55a15dbf1db75d6e5f7232c347 (diff)
all: Format code with gofumpt
See https://github.com/mvdan/gofumpt
Diffstat (limited to 'hugofs/files')
-rw-r--r--hugofs/files/classifier.go6
-rw-r--r--hugofs/files/classifier_test.go2
2 files changed, 4 insertions, 4 deletions
diff --git a/hugofs/files/classifier.go b/hugofs/files/classifier.go
index 35e416c8f..f0e0911ab 100644
--- a/hugofs/files/classifier.go
+++ b/hugofs/files/classifier.go
@@ -42,12 +42,14 @@ var (
"rest", "rst",
"mmark",
"org",
- "pandoc", "pdc"}
+ "pandoc", "pdc",
+ }
contentFileExtensionsSet map[string]bool
htmlFileExtensions = []string{
- "html", "htm"}
+ "html", "htm",
+ }
htmlFileExtensionsSet map[string]bool
)
diff --git a/hugofs/files/classifier_test.go b/hugofs/files/classifier_test.go
index 0cd7e4177..84036b870 100644
--- a/hugofs/files/classifier_test.go
+++ b/hugofs/files/classifier_test.go
@@ -39,7 +39,6 @@ func TestIsHTMLContent(t *testing.T) {
c.Assert(isHTMLContent(strings.NewReader(" <!--")), qt.Equals, true)
c.Assert(isHTMLContent(strings.NewReader(" ---<")), qt.Equals, false)
c.Assert(isHTMLContent(strings.NewReader(" foo <")), qt.Equals, false)
-
}
func TestComponentFolders(t *testing.T) {
@@ -57,5 +56,4 @@ func TestComponentFolders(t *testing.T) {
c.Assert(IsComponentFolder("content"), qt.Equals, true)
c.Assert(IsComponentFolder("foo"), qt.Equals, false)
c.Assert(IsComponentFolder(""), qt.Equals, false)
-
}