Preparing report...

Report for github.com/siongui/godom

A+    Excellent!    Found 22 issues across 29 files

Tweet

gofmt100%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command

No problems detected. Good job!


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


gocyclo100%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.

No problems detected. Good job!


golint24%

Golint is a linter for Go source code.

    • godom/dom.go
    • Line 49: warning: comment on exported type Object should be of the form "Object ..." (with optional leading article) (golint)
    • Line 62: warning: comment on exported var Window should be of the form "Window ..." (golint)
    • Line 65: warning: comment on exported var Document should be of the form "Document ..." (golint)
    • Line 87: warning: exported function Alert should have comment or be unexported (golint)
    • godom/navigator.go
    • Line 10: warning: exported type Navigator should have comment or be unexported (golint)
    • Line 16: warning: exported method Navigator.Language should have comment or be unexported (golint)
    • Line 20: warning: exported method Navigator.Languages should have comment or be unexported (golint)
    • godom/tokenlist.go
    • Line 10: warning: exported type DOMTokenList should have comment or be unexported (golint)
    • Line 14: warning: exported method DOMTokenList.Length should have comment or be unexported (golint)
    • Line 18: warning: exported method DOMTokenList.Contains should have comment or be unexported (golint)
    • Line 22: warning: exported method DOMTokenList.Add should have comment or be unexported (golint)
    • Line 26: warning: exported method DOMTokenList.Remove should have comment or be unexported (golint)
    • Line 30: warning: exported method DOMTokenList.Toggle should have comment or be unexported (golint)
    • godom/element.go
    • Line 8: warning: exported method Object.ClassList should have comment or be unexported (golint)
    • Line 12: warning: comment on exported method Object.InnerHTML should be of the form "InnerHTML ..." (golint)
    • Line 16: warning: exported method Object.SetInnerHTML should have comment or be unexported (golint)
    • Line 20: warning: comment on exported method Object.OuterHTML should be of the form "OuterHTML ..." (golint)
    • Line 24: warning: exported method Object.SetOuterHTML should have comment or be unexported (golint)
    • Line 28: warning: comment on exported method Object.TagName should be of the form "TagName ..." (golint)
    • Line 35: warning: comment on exported method Object.GetAttribute should be of the form "GetAttribute ..." (golint)
    • Line 43: warning: comment on exported method Object.HasAttribute should be of the form "HasAttribute ..." (golint)
    • Line 48: warning: comment on exported method Object.GetBoundingClientRect should be of the form "GetBoundingClientRect ..." (golint)
    • Line 53: warning: comment on exported method Object.GetElementsByTagName should be of the form "GetElementsByTagName ..." (golint)
    • Line 64: warning: comment on exported method Object.QuerySelector should be of the form "QuerySelector ..." (golint)
    • Line 69: warning: comment on exported method Object.QuerySelectorAll should be of the form "QuerySelectorAll ..." (golint)
    • godom/event.go
    • Line 10: warning: exported type Event should have comment or be unexported (golint)
    • Line 16: warning: comment on exported method Event.Target should be of the form "Target ..." (golint)
    • Line 23: warning: comment on exported method Event.PreventDefault should be of the form "PreventDefault ..." (golint)
    • Line 28: warning: comment on exported method Event.StopImmediatePropagation should be of the form "StopImmediatePropagation ..." (golint)
    • Line 33: warning: comment on exported method Event.StopPropagation should be of the form "StopPropagation ..." (golint)
    • godom/location.go
    • Line 10: warning: exported type Location should have comment or be unexported (golint)
    • Line 16: warning: exported method Location.Host should have comment or be unexported (golint)
    • Line 20: warning: exported method Location.Hostname should have comment or be unexported (golint)
    • Line 24: warning: exported method Location.Href should have comment or be unexported (golint)
    • Line 28: warning: exported method Location.Origin should have comment or be unexported (golint)
    • Line 32: warning: exported method Location.Pathname should have comment or be unexported (golint)
    • Line 36: warning: exported method Location.Port should have comment or be unexported (golint)
    • Line 40: warning: exported method Location.Protocol should have comment or be unexported (golint)
    • Line 44: warning: exported method Location.Search should have comment or be unexported (golint)
    • godom/node.go
    • Line 8: warning: comment on exported method Object.ChildNodes should be of the form "ChildNodes ..." (golint)
    • Line 19: warning: comment on exported method Object.FirstChild should be of the form "FirstChild ..." (golint)
    • Line 24: warning: comment on exported method Object.LastChild should be of the form "LastChild ..." (golint)
    • Line 29: warning: comment on exported method Object.NextSibling should be of the form "NextSibling ..." (golint)
    • Line 34: warning: comment on exported method Object.NodeType should be of the form "NodeType ..." (golint)
    • Line 39: warning: comment on exported method Object.NodeValue should be of the form "NodeValue ..." (golint)
    • Line 43: warning: exported method Object.SetNodeValue should have comment or be unexported (golint)
    • Line 47: warning: comment on exported method Object.ParentNode should be of the form "ParentNode ..." (golint)
    • Line 52: warning: comment on exported method Object.TextContent should be of the form "TextContent ..." (golint)
    • Line 58: warning: comment on exported method Object.SetTextContent should be of the form "SetTextContent ..." (golint)
    • Line 66: warning: comment on exported method Object.AppendChild should be of the form "AppendChild ..." (golint)
    • Line 71: warning: comment on exported method Object.Contains should be of the form "Contains ..." (golint)
    • Line 76: warning: comment on exported method Object.HasChildNodes should be of the form "HasChildNodes ..." (golint)
    • Line 81: warning: comment on exported method Object.InsertBefore should be of the form "InsertBefore ..." (golint)
    • Line 88: warning: comment on exported method Object.IsEqualNode should be of the form "IsEqualNode ..." (golint)
    • Line 93: warning: comment on exported method Object.IsSameNode should be of the form "IsSameNode ..." (golint)
    • Line 98: warning: comment on exported method Object.LookupPrefix should be of the form "LookupPrefix ..." (golint)
    • Line 103: warning: comment on exported method Object.Normalize should be of the form "Normalize ..." (golint)
    • Line 108: warning: comment on exported method Object.RemoveChild should be of the form "RemoveChild ..." (golint)
    • Line 113: warning: comment on exported method Object.ReplaceChild should be of the form "ReplaceChild ..." (golint)
    • godom/storage.go
    • Line 10: warning: exported type Storage should have comment or be unexported (golint)
    • Line 14: warning: exported var LocalStorage should have comment or be unexported (golint)
    • Line 15: warning: exported var SessionStorage should have comment or be unexported (golint)
    • Line 19: warning: comment on exported method Storage.Length should be of the form "Length ..." (golint)
    • Line 26: warning: comment on exported method Storage.Key should be of the form "Key ..." (golint)
    • Line 31: warning: comment on exported method Storage.GetItem should be of the form "GetItem ..." (golint)
    • Line 36: warning: comment on exported method Storage.SetItem should be of the form "SetItem ..." (golint)
    • Line 41: warning: comment on exported method Storage.RemoveItem should be of the form "RemoveItem ..." (golint)
    • Line 46: warning: comment on exported method Storage.Clear should be of the form "Clear ..." (golint)
    • godom/XMLHttpRequest.go
    • Line 10: warning: exported type XMLHttpRequest should have comment or be unexported (golint)
    • Line 14: warning: exported function NewXMLHttpRequest should have comment or be unexported (golint)
    • Line 20: warning: comment on exported method XMLHttpRequest.ResponseText should be of the form "ResponseText ..." (golint)
    • Line 25: warning: comment on exported method XMLHttpRequest.ResponseURL should be of the form "ResponseURL ..." (golint)
    • Line 30: warning: comment on exported method XMLHttpRequest.ResponseXML should be of the form "ResponseXML ..." (golint)
    • Line 35: warning: comment on exported method XMLHttpRequest.StatusText should be of the form "StatusText ..." (golint)
    • Line 40: warning: comment on exported method XMLHttpRequest.WithCredentials should be of the form "WithCredentials ..." (golint)
    • Line 45: warning: exported method XMLHttpRequest.SetWithCredentials should have comment or be unexported (golint)
    • Line 51: warning: comment on exported method XMLHttpRequest.Abort should be of the form "Abort ..." (golint)
    • Line 56: warning: comment on exported method XMLHttpRequest.Open should be of the form "Open ..." (golint)
    • Line 68: warning: comment on exported method XMLHttpRequest.OverrideMimeType should be of the form "OverrideMimeType ..." (golint)
    • Line 73: warning: comment on exported method XMLHttpRequest.Send should be of the form "Send ..." (golint)
    • Line 82: warning: comment on exported method XMLHttpRequest.SetRequestHeader should be of the form "SetRequestHeader ..." (golint)
    • godom/cssstyledeclaration.go
    • Line 10: warning: exported type CSSStyleDeclaration should have comment or be unexported (golint)
    • Line 16: warning: exported method CSSStyleDeclaration.CssText should have comment or be unexported (golint)
    • Line 20: warning: exported method CSSStyleDeclaration.Length should have comment or be unexported (golint)
    • Line 26: warning: exported method CSSStyleDeclaration.AlignContent should have comment or be unexported (golint)
    • Line 30: warning: exported method CSSStyleDeclaration.SetAlignContent should have comment or be unexported (golint)
    • Line 34: warning: exported method CSSStyleDeclaration.AlignItems should have comment or be unexported (golint)
    • Line 38: warning: exported method CSSStyleDeclaration.SetAlignItems should have comment or be unexported (golint)
    • Line 42: warning: exported method CSSStyleDeclaration.AlignSelf should have comment or be unexported (golint)
    • Line 46: warning: exported method CSSStyleDeclaration.SetAlignSelf should have comment or be unexported (golint)
    • Line 50: warning: exported method CSSStyleDeclaration.Animation should have comment or be unexported (golint)
    • Line 54: warning: exported method CSSStyleDeclaration.SetAnimation should have comment or be unexported (golint)
    • Line 58: warning: exported method CSSStyleDeclaration.AnimationDelay should have comment or be unexported (golint)
    • Line 62: warning: exported method CSSStyleDeclaration.SetAnimationDelay should have comment or be unexported (golint)
    • Line 66: warning: exported method CSSStyleDeclaration.AnimationDirection should have comment or be unexported (golint)
    • Line 70: warning: exported method CSSStyleDeclaration.SetAnimationDirection should have comment or be unexported (golint)
    • Line 74: warning: exported method CSSStyleDeclaration.AnimationDuration should have comment or be unexported (golint)
    • Line 78: warning: exported method CSSStyleDeclaration.SetAnimationDuration should have comment or be unexported (golint)
    • Line 82: warning: exported method CSSStyleDeclaration.AnimationFillMode should have comment or be unexported (golint)
    • Line 86: warning: exported method CSSStyleDeclaration.SetAnimationFillMode should have comment or be unexported (golint)
    • Line 90: warning: exported method CSSStyleDeclaration.AnimationIterationCount should have comment or be unexported (golint)
    • Line 94: warning: exported method CSSStyleDeclaration.SetAnimationIterationCount should have comment or be unexported (golint)
    • Line 98: warning: exported method CSSStyleDeclaration.AnimationName should have comment or be unexported (golint)
    • Line 102: warning: exported method CSSStyleDeclaration.SetAnimationName should have comment or be unexported (golint)
    • Line 106: warning: exported method CSSStyleDeclaration.AnimationTimingFunction should have comment or be unexported (golint)
    • Line 110: warning: exported method CSSStyleDeclaration.SetAnimationTimingFunction should have comment or be unexported (golint)
    • Line 114: warning: exported method CSSStyleDeclaration.AnimationPlayState should have comment or be unexported (golint)
    • Line 118: warning: exported method CSSStyleDeclaration.SetAnimationPlayState should have comment or be unexported (golint)
    • Line 122: warning: exported method CSSStyleDeclaration.Background should have comment or be unexported (golint)
    • Line 126: warning: exported method CSSStyleDeclaration.SetBackground should have comment or be unexported (golint)
    • Line 130: warning: exported method CSSStyleDeclaration.BackgroundAttachment should have comment or be unexported (golint)
    • Line 134: warning: exported method CSSStyleDeclaration.SetBackgroundAttachment should have comment or be unexported (golint)
    • Line 138: warning: exported method CSSStyleDeclaration.BackgroundColor should have comment or be unexported (golint)
    • Line 142: warning: exported method CSSStyleDeclaration.SetBackgroundColor should have comment or be unexported (golint)
    • Line 146: warning: exported method CSSStyleDeclaration.BackgroundImage should have comment or be unexported (golint)
    • Line 150: warning: exported method CSSStyleDeclaration.SetBackgroundImage should have comment or be unexported (golint)
    • Line 154: warning: exported method CSSStyleDeclaration.BackgroundPosition should have comment or be unexported (golint)
    • Line 158: warning: exported method CSSStyleDeclaration.SetBackgroundPosition should have comment or be unexported (golint)
    • Line 162: warning: exported method CSSStyleDeclaration.BackgroundRepeat should have comment or be unexported (golint)
    • Line 166: warning: exported method CSSStyleDeclaration.SetBackgroundRepeat should have comment or be unexported (golint)
    • Line 170: warning: exported method CSSStyleDeclaration.BackgroundClip should have comment or be unexported (golint)
    • Line 174: warning: exported method CSSStyleDeclaration.SetBackgroundClip should have comment or be unexported (golint)
    • Line 178: warning: exported method CSSStyleDeclaration.BackgroundOrigin should have comment or be unexported (golint)
    • Line 182: warning: exported method CSSStyleDeclaration.SetBackgroundOrigin should have comment or be unexported (golint)
    • Line 186: warning: exported method CSSStyleDeclaration.BackgroundSize should have comment or be unexported (golint)
    • Line 190: warning: exported method CSSStyleDeclaration.SetBackgroundSize should have comment or be unexported (golint)
    • Line 194: warning: exported method CSSStyleDeclaration.BackfaceVisibility should have comment or be unexported (golint)
    • Line 198: warning: exported method CSSStyleDeclaration.SetBackfaceVisibility should have comment or be unexported (golint)
    • Line 202: warning: exported method CSSStyleDeclaration.Border should have comment or be unexported (golint)
    • Line 206: warning: exported method CSSStyleDeclaration.SetBorder should have comment or be unexported (golint)
    • Line 210: warning: exported method CSSStyleDeclaration.BorderBottom should have comment or be unexported (golint)
    • Line 214: warning: exported method CSSStyleDeclaration.SetBorderBottom should have comment or be unexported (golint)
    • Line 218: warning: exported method CSSStyleDeclaration.BorderBottomColor should have comment or be unexported (golint)
    • Line 222: warning: exported method CSSStyleDeclaration.SetBorderBottomColor should have comment or be unexported (golint)
    • Line 226: warning: exported method CSSStyleDeclaration.BorderBottomLeftRadius should have comment or be unexported (golint)
    • Line 230: warning: exported method CSSStyleDeclaration.SetBorderBottomLeftRadius should have comment or be unexported (golint)
    • Line 234: warning: exported method CSSStyleDeclaration.BorderBottomRightRadius should have comment or be unexported (golint)
    • Line 238: warning: exported method CSSStyleDeclaration.SetBorderBottomRightRadius should have comment or be unexported (golint)
    • Line 242: warning: exported method CSSStyleDeclaration.BorderBottomStyle should have comment or be unexported (golint)
    • Line 246: warning: exported method CSSStyleDeclaration.SetBorderBottomStyle should have comment or be unexported (golint)
    • Line 250: warning: exported method CSSStyleDeclaration.BorderBottomWidth should have comment or be unexported (golint)
    • Line 254: warning: exported method CSSStyleDeclaration.SetBorderBottomWidth should have comment or be unexported (golint)
    • Line 258: warning: exported method CSSStyleDeclaration.BorderCollapse should have comment or be unexported (golint)
    • Line 262: warning: exported method CSSStyleDeclaration.SetBorderCollapse should have comment or be unexported (golint)
    • Line 266: warning: exported method CSSStyleDeclaration.BorderColor should have comment or be unexported (golint)
    • Line 270: warning: exported method CSSStyleDeclaration.SetBorderColor should have comment or be unexported (golint)
    • Line 274: warning: exported method CSSStyleDeclaration.BorderImage should have comment or be unexported (golint)
    • Line 278: warning: exported method CSSStyleDeclaration.SetBorderImage should have comment or be unexported (golint)
    • Line 282: warning: exported method CSSStyleDeclaration.BorderImageOutset should have comment or be unexported (golint)
    • Line 286: warning: exported method CSSStyleDeclaration.SetBorderImageOutset should have comment or be unexported (golint)
    • Line 290: warning: exported method CSSStyleDeclaration.BorderImageRepeat should have comment or be unexported (golint)
    • Line 294: warning: exported method CSSStyleDeclaration.SetBorderImageRepeat should have comment or be unexported (golint)
    • Line 298: warning: exported method CSSStyleDeclaration.BorderImageSlice should have comment or be unexported (golint)
    • Line 302: warning: exported method CSSStyleDeclaration.SetBorderImageSlice should have comment or be unexported (golint)
    • Line 306: warning: exported method CSSStyleDeclaration.BorderImageSource should have comment or be unexported (golint)
    • Line 310: warning: exported method CSSStyleDeclaration.SetBorderImageSource should have comment or be unexported (golint)
    • Line 314: warning: exported method CSSStyleDeclaration.BorderImageWidth should have comment or be unexported (golint)
    • Line 318: warning: exported method CSSStyleDeclaration.SetBorderImageWidth should have comment or be unexported (golint)
    • Line 322: warning: exported method CSSStyleDeclaration.BorderLeft should have comment or be unexported (golint)
    • Line 326: warning: exported method CSSStyleDeclaration.SetBorderLeft should have comment or be unexported (golint)
    • Line 330: warning: exported method CSSStyleDeclaration.BorderLeftColor should have comment or be unexported (golint)
    • Line 334: warning: exported method CSSStyleDeclaration.SetBorderLeftColor should have comment or be unexported (golint)
    • Line 338: warning: exported method CSSStyleDeclaration.BorderLeftStyle should have comment or be unexported (golint)
    • Line 342: warning: exported method CSSStyleDeclaration.SetBorderLeftStyle should have comment or be unexported (golint)
    • Line 346: warning: exported method CSSStyleDeclaration.BorderLeftWidth should have comment or be unexported (golint)
    • Line 350: warning: exported method CSSStyleDeclaration.SetBorderLeftWidth should have comment or be unexported (golint)
    • Line 354: warning: exported method CSSStyleDeclaration.BorderRadius should have comment or be unexported (golint)
    • Line 358: warning: exported method CSSStyleDeclaration.SetBorderRadius should have comment or be unexported (golint)
    • Line 362: warning: exported method CSSStyleDeclaration.BorderRight should have comment or be unexported (golint)
    • Line 366: warning: exported method CSSStyleDeclaration.SetBorderRight should have comment or be unexported (golint)
    • Line 370: warning: exported method CSSStyleDeclaration.BorderRightColor should have comment or be unexported (golint)
    • Line 374: warning: exported method CSSStyleDeclaration.SetBorderRightColor should have comment or be unexported (golint)
    • Line 378: warning: exported method CSSStyleDeclaration.BorderRightStyle should have comment or be unexported (golint)
    • Line 382: warning: exported method CSSStyleDeclaration.SetBorderRightStyle should have comment or be unexported (golint)
    • Line 386: warning: exported method CSSStyleDeclaration.BorderRightWidth should have comment or be unexported (golint)
    • Line 390: warning: exported method CSSStyleDeclaration.SetBorderRightWidth should have comment or be unexported (golint)
    • Line 394: warning: exported method CSSStyleDeclaration.BorderSpacing should have comment or be unexported (golint)
    • Line 398: warning: exported method CSSStyleDeclaration.SetBorderSpacing should have comment or be unexported (golint)
    • Line 402: warning: exported method CSSStyleDeclaration.BorderStyle should have comment or be unexported (golint)
    • Line 406: warning: exported method CSSStyleDeclaration.SetBorderStyle should have comment or be unexported (golint)
    • Line 410: warning: exported method CSSStyleDeclaration.BorderTop should have comment or be unexported (golint)
    • Line 414: warning: exported method CSSStyleDeclaration.SetBorderTop should have comment or be unexported (golint)
    • Line 418: warning: exported method CSSStyleDeclaration.BorderTopColor should have comment or be unexported (golint)
    • Line 422: warning: exported method CSSStyleDeclaration.SetBorderTopColor should have comment or be unexported (golint)
    • Line 426: warning: exported method CSSStyleDeclaration.BorderTopLeftRadius should have comment or be unexported (golint)
    • Line 430: warning: exported method CSSStyleDeclaration.SetBorderTopLeftRadius should have comment or be unexported (golint)
    • Line 434: warning: exported method CSSStyleDeclaration.BorderTopRightRadius should have comment or be unexported (golint)
    • Line 438: warning: exported method CSSStyleDeclaration.SetBorderTopRightRadius should have comment or be unexported (golint)
    • Line 442: warning: exported method CSSStyleDeclaration.BorderTopStyle should have comment or be unexported (golint)
    • Line 446: warning: exported method CSSStyleDeclaration.SetBorderTopStyle should have comment or be unexported (golint)
    • Line 450: warning: exported method CSSStyleDeclaration.BorderTopWidth should have comment or be unexported (golint)
    • Line 454: warning: exported method CSSStyleDeclaration.SetBorderTopWidth should have comment or be unexported (golint)
    • Line 458: warning: exported method CSSStyleDeclaration.BorderWidth should have comment or be unexported (golint)
    • Line 462: warning: exported method CSSStyleDeclaration.SetBorderWidth should have comment or be unexported (golint)
    • Line 466: warning: exported method CSSStyleDeclaration.Bottom should have comment or be unexported (golint)
    • Line 470: warning: exported method CSSStyleDeclaration.SetBottom should have comment or be unexported (golint)
    • Line 474: warning: exported method CSSStyleDeclaration.BoxShadow should have comment or be unexported (golint)
    • Line 478: warning: exported method CSSStyleDeclaration.SetBoxShadow should have comment or be unexported (golint)
    • Line 482: warning: exported method CSSStyleDeclaration.BoxSizing should have comment or be unexported (golint)
    • Line 486: warning: exported method CSSStyleDeclaration.SetBoxSizing should have comment or be unexported (golint)
    • Line 490: warning: exported method CSSStyleDeclaration.CaptionSide should have comment or be unexported (golint)
    • Line 494: warning: exported method CSSStyleDeclaration.SetCaptionSide should have comment or be unexported (golint)
    • Line 498: warning: exported method CSSStyleDeclaration.Clear should have comment or be unexported (golint)
    • Line 502: warning: exported method CSSStyleDeclaration.SetClear should have comment or be unexported (golint)
    • Line 506: warning: exported method CSSStyleDeclaration.Clip should have comment or be unexported (golint)
    • Line 510: warning: exported method CSSStyleDeclaration.SetClip should have comment or be unexported (golint)
    • Line 514: warning: exported method CSSStyleDeclaration.Color should have comment or be unexported (golint)
    • Line 518: warning: exported method CSSStyleDeclaration.SetColor should have comment or be unexported (golint)
    • Line 522: warning: exported method CSSStyleDeclaration.ColumnCount should have comment or be unexported (golint)
    • Line 526: warning: exported method CSSStyleDeclaration.SetColumnCount should have comment or be unexported (golint)
    • Line 530: warning: exported method CSSStyleDeclaration.ColumnFill should have comment or be unexported (golint)
    • Line 534: warning: exported method CSSStyleDeclaration.SetColumnFill should have comment or be unexported (golint)
    • Line 538: warning: exported method CSSStyleDeclaration.ColumnGap should have comment or be unexported (golint)
    • Line 542: warning: exported method CSSStyleDeclaration.SetColumnGap should have comment or be unexported (golint)
    • Line 546: warning: exported method CSSStyleDeclaration.ColumnRule should have comment or be unexported (golint)
    • Line 550: warning: exported method CSSStyleDeclaration.SetColumnRule should have comment or be unexported (golint)
    • Line 554: warning: exported method CSSStyleDeclaration.ColumnRuleColor should have comment or be unexported (golint)
    • Line 558: warning: exported method CSSStyleDeclaration.SetColumnRuleColor should have comment or be unexported (golint)
    • Line 562: warning: exported method CSSStyleDeclaration.ColumnRuleStyle should have comment or be unexported (golint)
    • Line 566: warning: exported method CSSStyleDeclaration.SetColumnRuleStyle should have comment or be unexported (golint)
    • Line 570: warning: exported method CSSStyleDeclaration.ColumnRuleWidth should have comment or be unexported (golint)
    • Line 574: warning: exported method CSSStyleDeclaration.SetColumnRuleWidth should have comment or be unexported (golint)
    • Line 578: warning: exported method CSSStyleDeclaration.Columns should have comment or be unexported (golint)
    • Line 582: warning: exported method CSSStyleDeclaration.SetColumns should have comment or be unexported (golint)
    • Line 586: warning: exported method CSSStyleDeclaration.ColumnSpan should have comment or be unexported (golint)
    • Line 590: warning: exported method CSSStyleDeclaration.SetColumnSpan should have comment or be unexported (golint)
    • Line 594: warning: exported method CSSStyleDeclaration.ColumnWidth should have comment or be unexported (golint)
    • Line 598: warning: exported method CSSStyleDeclaration.SetColumnWidth should have comment or be unexported (golint)
    • Line 602: warning: exported method CSSStyleDeclaration.CounterIncrement should have comment or be unexported (golint)
    • Line 606: warning: exported method CSSStyleDeclaration.SetCounterIncrement should have comment or be unexported (golint)
    • Line 610: warning: exported method CSSStyleDeclaration.CounterReset should have comment or be unexported (golint)
    • Line 614: warning: exported method CSSStyleDeclaration.SetCounterReset should have comment or be unexported (golint)
    • Line 618: warning: exported method CSSStyleDeclaration.Cursor should have comment or be unexported (golint)
    • Line 622: warning: exported method CSSStyleDeclaration.SetCursor should have comment or be unexported (golint)
    • Line 626: warning: exported method CSSStyleDeclaration.Direction should have comment or be unexported (golint)
    • Line 630: warning: exported method CSSStyleDeclaration.SetDirection should have comment or be unexported (golint)
    • Line 634: warning: exported method CSSStyleDeclaration.Display should have comment or be unexported (golint)
    • Line 638: warning: exported method CSSStyleDeclaration.SetDisplay should have comment or be unexported (golint)
    • Line 642: warning: exported method CSSStyleDeclaration.EmptyCells should have comment or be unexported (golint)
    • Line 646: warning: exported method CSSStyleDeclaration.SetEmptyCells should have comment or be unexported (golint)
    • Line 650: warning: exported method CSSStyleDeclaration.Filter should have comment or be unexported (golint)
    • Line 654: warning: exported method CSSStyleDeclaration.SetFilter should have comment or be unexported (golint)
    • Line 658: warning: exported method CSSStyleDeclaration.Flex should have comment or be unexported (golint)
    • Line 662: warning: exported method CSSStyleDeclaration.SetFlex should have comment or be unexported (golint)
    • Line 666: warning: exported method CSSStyleDeclaration.FlexBasis should have comment or be unexported (golint)
    • Line 670: warning: exported method CSSStyleDeclaration.SetFlexBasis should have comment or be unexported (golint)
    • Line 674: warning: exported method CSSStyleDeclaration.FlexDirection should have comment or be unexported (golint)
    • Line 678: warning: exported method CSSStyleDeclaration.SetFlexDirection should have comment or be unexported (golint)
    • Line 682: warning: exported method CSSStyleDeclaration.FlexFlow should have comment or be unexported (golint)
    • Line 686: warning: exported method CSSStyleDeclaration.SetFlexFlow should have comment or be unexported (golint)
    • Line 690: warning: exported method CSSStyleDeclaration.FlexGrow should have comment or be unexported (golint)
    • Line 694: warning: exported method CSSStyleDeclaration.SetFlexGrow should have comment or be unexported (golint)
    • Line 698: warning: exported method CSSStyleDeclaration.FlexShrink should have comment or be unexported (golint)
    • Line 702: warning: exported method CSSStyleDeclaration.SetFlexShrink should have comment or be unexported (golint)
    • Line 706: warning: exported method CSSStyleDeclaration.FlexWrap should have comment or be unexported (golint)
    • Line 710: warning: exported method CSSStyleDeclaration.SetFlexWrap should have comment or be unexported (golint)
    • Line 714: warning: exported method CSSStyleDeclaration.CssFloat should have comment or be unexported (golint)
    • Line 718: warning: exported method CSSStyleDeclaration.SetCssFloat should have comment or be unexported (golint)
    • Line 722: warning: exported method CSSStyleDeclaration.Font should have comment or be unexported (golint)
    • Line 726: warning: exported method CSSStyleDeclaration.SetFont should have comment or be unexported (golint)
    • Line 730: warning: exported method CSSStyleDeclaration.FontFamily should have comment or be unexported (golint)
    • Line 734: warning: exported method CSSStyleDeclaration.SetFontFamily should have comment or be unexported (golint)
    • Line 738: warning: exported method CSSStyleDeclaration.FontSize should have comment or be unexported (golint)
    • Line 742: warning: exported method CSSStyleDeclaration.SetFontSize should have comment or be unexported (golint)
    • Line 746: warning: exported method CSSStyleDeclaration.FontStyle should have comment or be unexported (golint)
    • Line 750: warning: exported method CSSStyleDeclaration.SetFontStyle should have comment or be unexported (golint)
    • Line 754: warning: exported method CSSStyleDeclaration.FontVariant should have comment or be unexported (golint)
    • Line 758: warning: exported method CSSStyleDeclaration.SetFontVariant should have comment or be unexported (golint)
    • Line 762: warning: exported method CSSStyleDeclaration.FontWeight should have comment or be unexported (golint)
    • Line 766: warning: exported method CSSStyleDeclaration.SetFontWeight should have comment or be unexported (golint)
    • Line 770: warning: exported method CSSStyleDeclaration.FontSizeAdjust should have comment or be unexported (golint)
    • Line 774: warning: exported method CSSStyleDeclaration.SetFontSizeAdjust should have comment or be unexported (golint)
    • Line 778: warning: exported method CSSStyleDeclaration.Height should have comment or be unexported (golint)
    • Line 782: warning: exported method CSSStyleDeclaration.SetHeight should have comment or be unexported (golint)
    • Line 786: warning: exported method CSSStyleDeclaration.JustifyContent should have comment or be unexported (golint)
    • Line 790: warning: exported method CSSStyleDeclaration.SetJustifyContent should have comment or be unexported (golint)
    • Line 794: warning: exported method CSSStyleDeclaration.Left should have comment or be unexported (golint)
    • Line 798: warning: exported method CSSStyleDeclaration.SetLeft should have comment or be unexported (golint)
    • Line 802: warning: exported method CSSStyleDeclaration.LetterSpacing should have comment or be unexported (golint)
    • Line 806: warning: exported method CSSStyleDeclaration.SetLetterSpacing should have comment or be unexported (golint)
    • Line 810: warning: exported method CSSStyleDeclaration.LineHeight should have comment or be unexported (golint)
    • Line 814: warning: exported method CSSStyleDeclaration.SetLineHeight should have comment or be unexported (golint)
    • Line 818: warning: exported method CSSStyleDeclaration.ListStyle should have comment or be unexported (golint)
    • Line 822: warning: exported method CSSStyleDeclaration.SetListStyle should have comment or be unexported (golint)
    • Line 826: warning: exported method CSSStyleDeclaration.ListStyleImage should have comment or be unexported (golint)
    • Line 830: warning: exported method CSSStyleDeclaration.SetListStyleImage should have comment or be unexported (golint)
    • Line 834: warning: exported method CSSStyleDeclaration.ListStylePosition should have comment or be unexported (golint)
    • Line 838: warning: exported method CSSStyleDeclaration.SetListStylePosition should have comment or be unexported (golint)
    • Line 842: warning: exported method CSSStyleDeclaration.ListStyleType should have comment or be unexported (golint)
    • Line 846: warning: exported method CSSStyleDeclaration.SetListStyleType should have comment or be unexported (golint)
    • Line 850: warning: exported method CSSStyleDeclaration.Margin should have comment or be unexported (golint)
    • Line 854: warning: exported method CSSStyleDeclaration.SetMargin should have comment or be unexported (golint)
    • Line 858: warning: exported method CSSStyleDeclaration.MarginBottom should have comment or be unexported (golint)
    • Line 862: warning: exported method CSSStyleDeclaration.SetMarginBottom should have comment or be unexported (golint)
    • Line 866: warning: exported method CSSStyleDeclaration.MarginLeft should have comment or be unexported (golint)
    • Line 870: warning: exported method CSSStyleDeclaration.SetMarginLeft should have comment or be unexported (golint)
    • Line 874: warning: exported method CSSStyleDeclaration.MarginRight should have comment or be unexported (golint)
    • Line 878: warning: exported method CSSStyleDeclaration.SetMarginRight should have comment or be unexported (golint)
    • Line 882: warning: exported method CSSStyleDeclaration.MarginTop should have comment or be unexported (golint)
    • Line 886: warning: exported method CSSStyleDeclaration.SetMarginTop should have comment or be unexported (golint)
    • Line 890: warning: exported method CSSStyleDeclaration.MaxHeight should have comment or be unexported (golint)
    • Line 894: warning: exported method CSSStyleDeclaration.SetMaxHeight should have comment or be unexported (golint)
    • Line 898: warning: exported method CSSStyleDeclaration.MaxWidth should have comment or be unexported (golint)
    • Line 902: warning: exported method CSSStyleDeclaration.SetMaxWidth should have comment or be unexported (golint)
    • Line 906: warning: exported method CSSStyleDeclaration.MinHeight should have comment or be unexported (golint)
    • Line 910: warning: exported method CSSStyleDeclaration.SetMinHeight should have comment or be unexported (golint)
    • Line 914: warning: exported method CSSStyleDeclaration.MinWidth should have comment or be unexported (golint)
    • Line 918: warning: exported method CSSStyleDeclaration.SetMinWidth should have comment or be unexported (golint)
    • Line 922: warning: exported method CSSStyleDeclaration.Opacity should have comment or be unexported (golint)
    • Line 926: warning: exported method CSSStyleDeclaration.SetOpacity should have comment or be unexported (golint)
    • Line 930: warning: exported method CSSStyleDeclaration.Order should have comment or be unexported (golint)
    • Line 934: warning: exported method CSSStyleDeclaration.SetOrder should have comment or be unexported (golint)
    • Line 938: warning: exported method CSSStyleDeclaration.Orphans should have comment or be unexported (golint)
    • Line 942: warning: exported method CSSStyleDeclaration.SetOrphans should have comment or be unexported (golint)
    • Line 946: warning: exported method CSSStyleDeclaration.Outline should have comment or be unexported (golint)
    • Line 950: warning: exported method CSSStyleDeclaration.SetOutline should have comment or be unexported (golint)
    • Line 954: warning: exported method CSSStyleDeclaration.OutlineColor should have comment or be unexported (golint)
    • Line 958: warning: exported method CSSStyleDeclaration.SetOutlineColor should have comment or be unexported (golint)
    • Line 962: warning: exported method CSSStyleDeclaration.OutlineOffset should have comment or be unexported (golint)
    • Line 966: warning: exported method CSSStyleDeclaration.SetOutlineOffset should have comment or be unexported (golint)
    • Line 970: warning: exported method CSSStyleDeclaration.OutlineStyle should have comment or be unexported (golint)
    • Line 974: warning: exported method CSSStyleDeclaration.SetOutlineStyle should have comment or be unexported (golint)
    • Line 978: warning: exported method CSSStyleDeclaration.OutlineWidth should have comment or be unexported (golint)
    • Line 982: warning: exported method CSSStyleDeclaration.SetOutlineWidth should have comment or be unexported (golint)
    • Line 986: warning: exported method CSSStyleDeclaration.Overflow should have comment or be unexported (golint)
    • Line 990: warning: exported method CSSStyleDeclaration.SetOverflow should have comment or be unexported (golint)
    • Line 994: warning: exported method CSSStyleDeclaration.OverflowX should have comment or be unexported (golint)
    • Line 998: warning: exported method CSSStyleDeclaration.SetOverflowX should have comment or be unexported (golint)
    • Line 1002: warning: exported method CSSStyleDeclaration.OverflowY should have comment or be unexported (golint)
    • Line 1006: warning: exported method CSSStyleDeclaration.SetOverflowY should have comment or be unexported (golint)
    • Line 1010: warning: exported method CSSStyleDeclaration.Padding should have comment or be unexported (golint)
    • Line 1014: warning: exported method CSSStyleDeclaration.SetPadding should have comment or be unexported (golint)
    • Line 1018: warning: exported method CSSStyleDeclaration.PaddingBottom should have comment or be unexported (golint)
    • Line 1022: warning: exported method CSSStyleDeclaration.SetPaddingBottom should have comment or be unexported (golint)
    • Line 1026: warning: exported method CSSStyleDeclaration.PaddingLeft should have comment or be unexported (golint)
    • Line 1030: warning: exported method CSSStyleDeclaration.SetPaddingLeft should have comment or be unexported (golint)
    • Line 1034: warning: exported method CSSStyleDeclaration.PaddingRight should have comment or be unexported (golint)
    • Line 1038: warning: exported method CSSStyleDeclaration.SetPaddingRight should have comment or be unexported (golint)
    • Line 1042: warning: exported method CSSStyleDeclaration.PaddingTop should have comment or be unexported (golint)
    • Line 1046: warning: exported method CSSStyleDeclaration.SetPaddingTop should have comment or be unexported (golint)
    • Line 1050: warning: exported method CSSStyleDeclaration.PageBreakAfter should have comment or be unexported (golint)
    • Line 1054: warning: exported method CSSStyleDeclaration.SetPageBreakAfter should have comment or be unexported (golint)
    • Line 1058: warning: exported method CSSStyleDeclaration.PageBreakBefore should have comment or be unexported (golint)
    • Line 1062: warning: exported method CSSStyleDeclaration.SetPageBreakBefore should have comment or be unexported (golint)
    • Line 1066: warning: exported method CSSStyleDeclaration.PageBreakInside should have comment or be unexported (golint)
    • Line 1070: warning: exported method CSSStyleDeclaration.SetPageBreakInside should have comment or be unexported (golint)
    • Line 1074: warning: exported method CSSStyleDeclaration.Perspective should have comment or be unexported (golint)
    • Line 1078: warning: exported method CSSStyleDeclaration.SetPerspective should have comment or be unexported (golint)
    • Line 1082: warning: exported method CSSStyleDeclaration.PerspectiveOrigin should have comment or be unexported (golint)
    • Line 1086: warning: exported method CSSStyleDeclaration.SetPerspectiveOrigin should have comment or be unexported (golint)
    • Line 1090: warning: exported method CSSStyleDeclaration.Position should have comment or be unexported (golint)
    • Line 1094: warning: exported method CSSStyleDeclaration.SetPosition should have comment or be unexported (golint)
    • Line 1098: warning: exported method CSSStyleDeclaration.Quotes should have comment or be unexported (golint)
    • Line 1102: warning: exported method CSSStyleDeclaration.SetQuotes should have comment or be unexported (golint)
    • Line 1106: warning: exported method CSSStyleDeclaration.Resize should have comment or be unexported (golint)
    • Line 1110: warning: exported method CSSStyleDeclaration.SetResize should have comment or be unexported (golint)
    • Line 1114: warning: exported method CSSStyleDeclaration.Right should have comment or be unexported (golint)
    • Line 1118: warning: exported method CSSStyleDeclaration.SetRight should have comment or be unexported (golint)
    • Line 1122: warning: exported method CSSStyleDeclaration.TableLayout should have comment or be unexported (golint)
    • Line 1126: warning: exported method CSSStyleDeclaration.SetTableLayout should have comment or be unexported (golint)
    • Line 1130: warning: exported method CSSStyleDeclaration.TabSize should have comment or be unexported (golint)
    • Line 1134: warning: exported method CSSStyleDeclaration.SetTabSize should have comment or be unexported (golint)
    • Line 1138: warning: exported method CSSStyleDeclaration.TextAlign should have comment or be unexported (golint)
    • Line 1142: warning: exported method CSSStyleDeclaration.SetTextAlign should have comment or be unexported (golint)
    • Line 1146: warning: exported method CSSStyleDeclaration.TextAlignLast should have comment or be unexported (golint)
    • Line 1150: warning: exported method CSSStyleDeclaration.SetTextAlignLast should have comment or be unexported (golint)
    • Line 1154: warning: exported method CSSStyleDeclaration.TextDecoration should have comment or be unexported (golint)
    • Line 1158: warning: exported method CSSStyleDeclaration.SetTextDecoration should have comment or be unexported (golint)
    • Line 1162: warning: exported method CSSStyleDeclaration.TextDecorationColor should have comment or be unexported (golint)
    • Line 1166: warning: exported method CSSStyleDeclaration.SetTextDecorationColor should have comment or be unexported (golint)
    • Line 1170: warning: exported method CSSStyleDeclaration.TextDecorationLine should have comment or be unexported (golint)
    • Line 1174: warning: exported method CSSStyleDeclaration.SetTextDecorationLine should have comment or be unexported (golint)
    • Line 1178: warning: exported method CSSStyleDeclaration.TextDecorationStyle should have comment or be unexported (golint)
    • Line 1182: warning: exported method CSSStyleDeclaration.SetTextDecorationStyle should have comment or be unexported (golint)
    • Line 1186: warning: exported method CSSStyleDeclaration.TextIndent should have comment or be unexported (golint)
    • Line 1190: warning: exported method CSSStyleDeclaration.SetTextIndent should have comment or be unexported (golint)
    • Line 1194: warning: exported method CSSStyleDeclaration.TextOverflow should have comment or be unexported (golint)
    • Line 1198: warning: exported method CSSStyleDeclaration.SetTextOverflow should have comment or be unexported (golint)
    • Line 1202: warning: exported method CSSStyleDeclaration.TextShadow should have comment or be unexported (golint)
    • Line 1206: warning: exported method CSSStyleDeclaration.SetTextShadow should have comment or be unexported (golint)
    • Line 1210: warning: exported method CSSStyleDeclaration.TextTransform should have comment or be unexported (golint)
    • Line 1214: warning: exported method CSSStyleDeclaration.SetTextTransform should have comment or be unexported (golint)
    • Line 1218: warning: exported method CSSStyleDeclaration.Top should have comment or be unexported (golint)
    • Line 1222: warning: exported method CSSStyleDeclaration.SetTop should have comment or be unexported (golint)
    • Line 1226: warning: exported method CSSStyleDeclaration.Transform should have comment or be unexported (golint)
    • Line 1230: warning: exported method CSSStyleDeclaration.SetTransform should have comment or be unexported (golint)
    • Line 1234: warning: exported method CSSStyleDeclaration.TransformOrigin should have comment or be unexported (golint)
    • Line 1238: warning: exported method CSSStyleDeclaration.SetTransformOrigin should have comment or be unexported (golint)
    • Line 1242: warning: exported method CSSStyleDeclaration.TransformStyle should have comment or be unexported (golint)
    • Line 1246: warning: exported method CSSStyleDeclaration.SetTransformStyle should have comment or be unexported (golint)
    • Line 1250: warning: exported method CSSStyleDeclaration.Transition should have comment or be unexported (golint)
    • Line 1254: warning: exported method CSSStyleDeclaration.SetTransition should have comment or be unexported (golint)
    • Line 1258: warning: exported method CSSStyleDeclaration.TransitionProperty should have comment or be unexported (golint)
    • Line 1262: warning: exported method CSSStyleDeclaration.SetTransitionProperty should have comment or be unexported (golint)
    • Line 1266: warning: exported method CSSStyleDeclaration.TransitionDuration should have comment or be unexported (golint)
    • Line 1270: warning: exported method CSSStyleDeclaration.SetTransitionDuration should have comment or be unexported (golint)
    • Line 1274: warning: exported method CSSStyleDeclaration.TransitionTimingFunction should have comment or be unexported (golint)
    • Line 1278: warning: exported method CSSStyleDeclaration.SetTransitionTimingFunction should have comment or be unexported (golint)
    • Line 1282: warning: exported method CSSStyleDeclaration.TransitionDelay should have comment or be unexported (golint)
    • Line 1286: warning: exported method CSSStyleDeclaration.SetTransitionDelay should have comment or be unexported (golint)
    • Line 1290: warning: exported method CSSStyleDeclaration.UnicodeBidi should have comment or be unexported (golint)
    • Line 1294: warning: exported method CSSStyleDeclaration.SetUnicodeBidi should have comment or be unexported (golint)
    • Line 1298: warning: exported method CSSStyleDeclaration.UserSelect should have comment or be unexported (golint)
    • Line 1302: warning: exported method CSSStyleDeclaration.SetUserSelect should have comment or be unexported (golint)
    • Line 1306: warning: exported method CSSStyleDeclaration.VerticalAlign should have comment or be unexported (golint)
    • Line 1310: warning: exported method CSSStyleDeclaration.SetVerticalAlign should have comment or be unexported (golint)
    • Line 1314: warning: exported method CSSStyleDeclaration.Visibility should have comment or be unexported (golint)
    • Line 1318: warning: exported method CSSStyleDeclaration.SetVisibility should have comment or be unexported (golint)
    • Line 1322: warning: exported method CSSStyleDeclaration.WhiteSpace should have comment or be unexported (golint)
    • Line 1326: warning: exported method CSSStyleDeclaration.SetWhiteSpace should have comment or be unexported (golint)
    • Line 1330: warning: exported method CSSStyleDeclaration.Width should have comment or be unexported (golint)
    • Line 1334: warning: exported method CSSStyleDeclaration.SetWidth should have comment or be unexported (golint)
    • Line 1338: warning: exported method CSSStyleDeclaration.WordBreak should have comment or be unexported (golint)
    • Line 1342: warning: exported method CSSStyleDeclaration.SetWordBreak should have comment or be unexported (golint)
    • Line 1346: warning: exported method CSSStyleDeclaration.WordSpacing should have comment or be unexported (golint)
    • Line 1350: warning: exported method CSSStyleDeclaration.SetWordSpacing should have comment or be unexported (golint)
    • Line 1354: warning: exported method CSSStyleDeclaration.WordWrap should have comment or be unexported (golint)
    • Line 1358: warning: exported method CSSStyleDeclaration.SetWordWrap should have comment or be unexported (golint)
    • Line 1362: warning: exported method CSSStyleDeclaration.Widows should have comment or be unexported (golint)
    • Line 1366: warning: exported method CSSStyleDeclaration.SetWidows should have comment or be unexported (golint)
    • Line 1370: warning: exported method CSSStyleDeclaration.ZIndex should have comment or be unexported (golint)
    • Line 1374: warning: exported method CSSStyleDeclaration.SetZIndex should have comment or be unexported (golint)
    • godom/document.go
    • Line 8: warning: comment on exported method Object.ActiveElement should be of the form "ActiveElement ..." (golint)
    • Line 16: warning: exported method Object.DocumentElement should have comment or be unexported (golint)
    • Line 22: warning: comment on exported method Object.CreateElement should be of the form "CreateElement ..." (golint)
    • Line 27: warning: comment on exported method Object.CreateTextNode should be of the form "CreateTextNode ..." (golint)
    • Line 32: warning: comment on exported method Object.GetElementById should be of the form "GetElementById ..." (golint)
    • godom/extra.go
    • Line 5: warning: exported method Object.RemoveAllChildNodes should have comment or be unexported (golint)
    • Line 11: warning: comment on exported method Object.AppendBefore should be of the form "AppendBefore ..." (golint)
    • Line 19: warning: comment on exported method Object.AppendAfter should be of the form "AppendAfter ..." (golint)
    • Line 26: warning: comment on exported method Object.IsFocused should be of the form "IsFocused ..." (golint)
    • godom/htmlelement.go
    • Line 8: warning: comment on exported method Object.Style should be of the form "Style ..." (golint)
    • Line 13: warning: comment on exported method Object.Dataset should be of the form "Dataset ..." (golint)
    • Line 20: warning: comment on exported method Object.Blur should be of the form "Blur ..." (golint)
    • Line 26: warning: comment on exported method Object.Focus should be of the form "Focus ..." (golint)
    • godom/htmlinputelement.go
    • Line 9: warning: exported method Object.Value should have comment or be unexported (golint)
    • Line 13: warning: exported method Object.SetValue should have comment or be unexported (golint)
    • godom/xslt.go
    • Line 10: warning: exported type XSLTProcessor should have comment or be unexported (golint)
    • Line 14: warning: exported function NewXSLTProcessor should have comment or be unexported (golint)
    • Line 20: warning: comment on exported method XSLTProcessor.ImportStylesheet should be of the form "ImportStylesheet ..." (golint)
    • Line 25: warning: exported method XSLTProcessor.TransformToFragment should have comment or be unexported (golint)
    • Line 29: warning: exported method XSLTProcessor.TransformToDocument should have comment or be unexported (golint)
    • godom/domrect.go
    • Line 10: warning: exported type DOMRect should have comment or be unexported (golint)
    • Line 14: warning: exported method DOMRect.X should have comment or be unexported (golint)
    • Line 18: warning: exported method DOMRect.Y should have comment or be unexported (golint)
    • Line 22: warning: exported method DOMRect.Width should have comment or be unexported (golint)
    • Line 26: warning: exported method DOMRect.Height should have comment or be unexported (golint)
    • Line 30: warning: exported method DOMRect.Top should have comment or be unexported (golint)
    • Line 34: warning: exported method DOMRect.Right should have comment or be unexported (golint)
    • Line 38: warning: exported method DOMRect.Bottom should have comment or be unexported (golint)
    • Line 42: warning: exported method DOMRect.Left should have comment or be unexported (golint)
    • godom/eventtarget.go
    • Line 8: warning: comment on exported method Object.AddEventListener should be of the form "AddEventListener ..." (golint)
    • Line 17: warning: comment on exported method Object.RemoveEventListener should be of the form "RemoveEventListener ..." (golint)
    • godom/history.go
    • Line 10: warning: exported type History should have comment or be unexported (golint)
    • Line 16: warning: comment on exported method History.Length should be of the form "Length ..." (golint)
    • Line 23: warning: comment on exported method History.Back should be of the form "Back ..." (golint)
    • Line 28: warning: comment on exported method History.Forward should be of the form "Forward ..." (golint)
    • Line 33: warning: comment on exported method History.Go should be of the form "Go ..." (golint)
    • Line 38: warning: comment on exported method History.PushState should be of the form "PushState ..." (golint)
    • Line 43: warning: comment on exported method History.ReplaceState should be of the form "ReplaceState ..." (golint)
    • godom/keyboardevent.go
    • Line 8: warning: comment on exported method Event.Code should be of the form "Code ..." (golint)
    • Line 13: warning: comment on exported method Event.Key should be of the form "Key ..." (golint)
    • Line 18: warning: comment on exported method Event.KeyCode should be of the form "KeyCode ..." (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!