common: Fix golint errors
authorCameron Moore <moorereason@gmail.com>
Thu, 6 Sep 2018 16:02:32 +0000 (11:02 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Sep 2018 06:25:51 +0000 (08:25 +0200)
common/errors/errors.go:21:1: comment on exported var FeatureNotAvailableErr should be of the form "FeatureNotAvailableErr ..."
common/errors/errors.go:23:5: error var FeatureNotAvailableErr should have name of the form ErrFoo
common/maps/scratch.go:76:1: comment on exported method Scratch.Delete should be of the form "Delete ..."
common/maps/scratch.go:133:1: exported function NewScratch should have comment or be unexported
common/types/types.go:44:1: exported function NewKeyValuesStrings should have comment or be unexported

common/errors/errors.go
common/maps/scratch.go
common/types/types.go
resource/postcss/postcss.go
resource/tocss/scss/tocss_notavailable.go
resource/transform.go

index eff65ff92d9027ff33fb5ce2f35d08f8d2d3a309..673cd23ff002c6e7a55cc1e2a6226df84d091909 100644 (file)
@@ -18,6 +18,8 @@ import (
        "errors"
 )
 
+// ErrFeatureNotAvailable denotes that a feature is unavailable.
+//
 // We will, at least to begin with, make some Hugo features (SCSS with libsass) optional,
 // and this error is used to signal those situations.
-var FeatureNotAvailableErr = errors.New("this feature is not available in your current Hugo version")
+var ErrFeatureNotAvailable = errors.New("this feature is not available in your current Hugo version")
index d009714350f82d98806a49a04510d8847bcfc561..4b062d1393003064d20347daae31dddef4572e65 100644 (file)
@@ -73,7 +73,7 @@ func (c *Scratch) Set(key string, value interface{}) string {
        return ""
 }
 
-// Reset deletes the given key
+// Delete deletes the given key.
 func (c *Scratch) Delete(key string) string {
        c.mu.Lock()
        delete(c.values, key)
@@ -81,7 +81,7 @@ func (c *Scratch) Delete(key string) string {
        return ""
 }
 
-// Get returns a value previously set by Add or Set
+// Get returns a value previously set by Add or Set.
 func (c *Scratch) Get(key string) interface{} {
        c.mu.RLock()
        val := c.values[key]
@@ -104,7 +104,7 @@ func (c *Scratch) SetInMap(key string, mapKey string, value interface{}) string
        return ""
 }
 
-// GetSortedMapValues returns a sorted map previously filled with SetInMap
+// GetSortedMapValues returns a sorted map previously filled with SetInMap.
 func (c *Scratch) GetSortedMapValues(key string) interface{} {
        c.mu.RLock()
 
@@ -130,6 +130,7 @@ func (c *Scratch) GetSortedMapValues(key string) interface{} {
        return sortedArray
 }
 
+// NewScratch returns a new instance Scratch.
 func NewScratch() *Scratch {
        return &Scratch{values: make(map[string]interface{})}
 }
index a5805d07abf3945c18fc3ec72a9834f3c3ac9898..fca58edcb918c7bfc30fa191107998a99e4de396 100644 (file)
@@ -41,6 +41,8 @@ func (k KeyValues) String() string {
        return fmt.Sprintf("%v: %v", k.Key, k.Values)
 }
 
+// NewKeyValuesStrings takes a given key and slice of values and returns a new
+// KeyValues struct.
 func NewKeyValuesStrings(key string, values ...string) KeyValues {
        iv := make([]interface{}, len(values))
        for i := 0; i < len(values); i++ {
index 3b2b4175a16bee727877b1f243cf4d6596093268..202b4c06b9f3518af61837736ab218c25444bbf7 100644 (file)
@@ -111,7 +111,7 @@ func (t *postcssTransformation) Transform(ctx *resource.ResourceTransformationCt
                binary = binaryName
                if _, err := exec.LookPath(binary); err != nil {
                        // This may be on a CI server etc. Will fall back to pre-built assets.
-                       return errors.FeatureNotAvailableErr
+                       return errors.ErrFeatureNotAvailable
                }
        }
 
index 69b4fc6556e4f95b22138121c44ab5a413175579..2ec5a483216f13cb9bf9d9b94bc0a1672597b90a 100644 (file)
@@ -26,5 +26,5 @@ func Supports() bool {
 }
 
 func (t *toCSSTransformation) Transform(ctx *resource.ResourceTransformationCtx) error {
-       return errors.FeatureNotAvailableErr
+       return errors.ErrFeatureNotAvailable
 }
index 5c01c71299368c3ee9c9473ea42c6d947e747ac2..9e6215b9e901d3a6d5bf7ee26fefb0d4753ce1ea 100644 (file)
@@ -386,7 +386,7 @@ func (r *transformedResource) transform(setContent bool) (err error) {
                }
 
                if err := tr.transformation.Transform(tctx); err != nil {
-                       if err == errors.FeatureNotAvailableErr {
+                       if err == errors.ErrFeatureNotAvailable {
                                // This transformation is not available in this
                                // Hugo installation (scss not compiled in, PostCSS not available etc.)
                                // If a prepared bundle for this transformation chain is available, use that.