Preparing report...

Report for github.com/Quasilyte/goism

A+    Excellent!    Found 45 issues across 135 files

Tweet

gofmt95%

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


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!


gocyclo95%

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.


golint74%

Golint is a linter for Go source code.

    • goism/src/backends/lapc/asm/assembler.go
    • Line 9: warning: exported type Assembler should have comment or be unexported (golint)
    • Line 15: warning: exported type Object should have comment or be unexported (golint)
    • Line 20: warning: exported function NewAssembler should have comment or be unexported (golint)
    • Line 26: warning: exported method Assembler.Assemble should have comment or be unexported (golint)
    • goism/src/backends/lapc/sexp.go
    • Line 18: warning: exported method InstrCall.Copy should have comment or be unexported (golint)
    • Line 25: warning: exported method InstrCall.Cost should have comment or be unexported (golint)
    • Line 30: warning: exported method InstrCall.Type should have comment or be unexported (golint)
    • goism/src/sexp/type.go
    • Line 9: warning: exported method Bool.Type should have comment or be unexported (golint)
    • Line 10: warning: exported method Int.Type should have comment or be unexported (golint)
    • Line 11: warning: exported method Float.Type should have comment or be unexported (golint)
    • Line 12: warning: exported method Str.Type should have comment or be unexported (golint)
    • Line 13: warning: exported method Symbol.Type should have comment or be unexported (golint)
    • Line 14: warning: exported method Var.Type should have comment or be unexported (golint)
    • Line 15: warning: exported method Local.Type should have comment or be unexported (golint)
    • Line 17: warning: exported method ArrayLit.Type should have comment or be unexported (golint)
    • Line 18: warning: exported method SparseArrayLit.Type should have comment or be unexported (golint)
    • Line 19: warning: exported method SliceLit.Type should have comment or be unexported (golint)
    • Line 20: warning: exported method StructLit.Type should have comment or be unexported (golint)
    • Line 22: warning: exported method ArrayUpdate.Type should have comment or be unexported (golint)
    • Line 23: warning: exported method SliceUpdate.Type should have comment or be unexported (golint)
    • Line 24: warning: exported method StructUpdate.Type should have comment or be unexported (golint)
    • Line 25: warning: exported method Bind.Type should have comment or be unexported (golint)
    • Line 26: warning: exported method Rebind.Type should have comment or be unexported (golint)
    • Line 27: warning: exported method VarUpdate.Type should have comment or be unexported (golint)
    • Line 28: warning: exported method FormList.Type should have comment or be unexported (golint)
    • Line 29: warning: exported method Block.Type should have comment or be unexported (golint)
    • Line 30: warning: exported method If.Type should have comment or be unexported (golint)
    • Line 31: warning: exported method Switch.Type should have comment or be unexported (golint)
    • Line 32: warning: exported method SwitchTrue.Type should have comment or be unexported (golint)
    • Line 33: warning: exported method Return.Type should have comment or be unexported (golint)
    • Line 34: warning: exported method ExprStmt.Type should have comment or be unexported (golint)
    • Line 35: warning: exported method Goto.Type should have comment or be unexported (golint)
    • Line 36: warning: exported method Label.Type should have comment or be unexported (golint)
    • Line 38: warning: exported method Repeat.Type should have comment or be unexported (golint)
    • Line 39: warning: exported method DoTimes.Type should have comment or be unexported (golint)
    • Line 40: warning: exported method Loop.Type should have comment or be unexported (golint)
    • Line 41: warning: exported method While.Type should have comment or be unexported (golint)
    • Line 43: warning: exported method ArrayIndex.Type should have comment or be unexported (golint)
    • Line 46: warning: exported method SliceIndex.Type should have comment or be unexported (golint)
    • Line 49: warning: exported method StructIndex.Type should have comment or be unexported (golint)
    • Line 53: warning: exported method ArraySlice.Type should have comment or be unexported (golint)
    • Line 54: warning: exported method SliceSlice.Type should have comment or be unexported (golint)
    • Line 56: warning: exported method TypeAssert.Type should have comment or be unexported (golint)
    • Line 58: warning: exported method Call.Type should have comment or be unexported (golint)
    • Line 65: warning: exported method LispCall.Type should have comment or be unexported (golint)
    • Line 89: warning: exported method LambdaCall.Type should have comment or be unexported (golint)
    • Line 90: warning: exported method DynCall.Type should have comment or be unexported (golint)
    • Line 92: warning: exported method Let.Type should have comment or be unexported (golint)
    • Line 98: warning: exported method TypeCast.Type should have comment or be unexported (golint)
    • Line 102: warning: exported method And.Type should have comment or be unexported (golint)
    • Line 103: warning: exported method Or.Type should have comment or be unexported (golint)
    • goism/src/backends/lapc/instr/instr.go
    • Line 6: warning: exported const AttrTakeNothing should have comment (or a comment on this block) or be unexported (golint)
    • Line 18: warning: exported const AttrPushNothing should have comment (or a comment on this block) or be unexported (golint)
    • Line 28: warning: exported const AttrEnc0 should have comment (or a comment on this block) or be unexported (golint)
    • goism/src/tu/symbols/env.go
    • Line 9: warning: exported type Env should have comment or be unexported (golint)
    • Line 21: warning: exported function NewEnv should have comment or be unexported (golint)
    • Line 29: warning: exported method Env.ContainsVar should have comment or be unexported (golint)
    • Line 43: warning: exported method Env.InternVar should have comment or be unexported (golint)
    • goism/src/tu/load/load.go
    • Line 58: warning: exported function Runtime should have comment or be unexported (golint)
    • Line 76: warning: exported function Package should have comment or be unexported (golint)
    • goism/src/sexpconv/sexpconv.go
    • Line 14: warning: exported type Converter should have comment or be unexported (golint)
    • Line 20: warning: exported method Converter.FuncTable should have comment or be unexported (golint)
    • Line 24: warning: exported method Converter.Env should have comment or be unexported (golint)
    • Line 42: warning: exported function NewConverter should have comment or be unexported (golint)
    • Line 56: warning: exported method Converter.VarInit should have comment or be unexported (golint)
    • Line 61: warning: exported method Converter.FuncBody should have comment or be unexported (golint)
    • Line 75: warning: exported method Converter.VarZeroInit should have comment or be unexported (golint)
    • goism/src/tu/symbols/itab_env.go
    • Line 32: warning: exported function NewItabEnv should have comment or be unexported (golint)
    • Line 62: warning: exported method ItabEnv.GetMasterItabs should have comment or be unexported (golint)
    • goism/src/emacs/rt/slice.go
    • Line 15: warning: exported function SliceLen should have comment or be unexported (golint)
    • Line 16: warning: exported function SliceCap should have comment or be unexported (golint)
    • goism/src/exn/exn.go
    • Line 11: warning: exported type Kind should have comment or be unexported (golint)
    • Line 14: warning: exported const ErrLogic should have comment (or a comment on this block) or be unexported (golint)
    • Line 20: warning: exported type Error should have comment or be unexported (golint)
    • goism/src/magic_pkg/emacs/lisp/package.go
    • Line 7: warning: exported var Package should have comment or be unexported (golint)
    • Line 10: warning: exported var TypObject should have comment or be unexported (golint)
    • Line 14: warning: exported function InitPackage should have comment or be unexported (golint)
    • goism/src/magic_pkg/emacs/rt/package.go
    • Line 11: warning: exported var Package should have comment or be unexported (golint)
    • Line 13: warning: exported var RetVars should have comment or be unexported (golint)
    • Line 16: warning: exported var TypSlice should have comment or be unexported (golint)
    • Line 19: warning: exported function InitPackage should have comment or be unexported (golint)
    • goism/src/sexp/copy.go
    • Line 3: warning: exported method Bool.Copy should have comment or be unexported (golint)
    • Line 4: warning: exported method Int.Copy should have comment or be unexported (golint)
    • Line 5: warning: exported method Float.Copy should have comment or be unexported (golint)
    • Line 6: warning: exported method Str.Copy should have comment or be unexported (golint)
    • Line 7: warning: exported method Symbol.Copy should have comment or be unexported (golint)
    • Line 8: warning: exported method Var.Copy should have comment or be unexported (golint)
    • Line 11: warning: exported method Local.Copy should have comment or be unexported (golint)
    • Line 15: warning: exported method ArrayLit.Copy should have comment or be unexported (golint)
    • Line 18: warning: exported method SparseArrayLit.Copy should have comment or be unexported (golint)
    • Line 26: warning: exported method SliceLit.Copy should have comment or be unexported (golint)
    • Line 29: warning: exported method StructLit.Copy should have comment or be unexported (golint)
    • Line 33: warning: exported method ArrayUpdate.Copy should have comment or be unexported (golint)
    • Line 40: warning: exported method SliceUpdate.Copy should have comment or be unexported (golint)
    • Line 47: warning: exported method StructUpdate.Copy should have comment or be unexported (golint)
    • Line 55: warning: exported method Bind.Copy should have comment or be unexported (golint)
    • Line 58: warning: exported method Rebind.Copy should have comment or be unexported (golint)
    • Line 61: warning: exported method VarUpdate.Copy should have comment or be unexported (golint)
    • Line 64: warning: exported method FormList.Copy should have comment or be unexported (golint)
    • Line 67: warning: exported method Block.Copy should have comment or be unexported (golint)
    • Line 70: warning: exported method If.Copy should have comment or be unexported (golint)
    • Line 77: warning: exported method Switch.Copy should have comment or be unexported (golint)
    • Line 83: warning: exported method SwitchTrue.Copy should have comment or be unexported (golint)
    • Line 86: warning: exported method Return.Copy should have comment or be unexported (golint)
    • Line 89: warning: exported method ExprStmt.Copy should have comment or be unexported (golint)
    • Line 92: warning: exported method Goto.Copy should have comment or be unexported (golint)
    • Line 93: warning: exported method Label.Copy should have comment or be unexported (golint)
    • Line 95: warning: exported method Repeat.Copy should have comment or be unexported (golint)
    • Line 101: warning: exported method DoTimes.Copy should have comment or be unexported (golint)
    • Line 109: warning: exported method Loop.Copy should have comment or be unexported (golint)
    • Line 116: warning: exported method While.Copy should have comment or be unexported (golint)
    • Line 125: warning: exported method ArrayIndex.Copy should have comment or be unexported (golint)
    • Line 131: warning: exported method SliceIndex.Copy should have comment or be unexported (golint)
    • Line 137: warning: exported method StructIndex.Copy should have comment or be unexported (golint)
    • Line 145: warning: exported method ArraySlice.Copy should have comment or be unexported (golint)
    • Line 152: warning: exported method SliceSlice.Copy should have comment or be unexported (golint)
    • Line 159: warning: exported method TypeAssert.Copy should have comment or be unexported (golint)
    • Line 163: warning: exported method Call.Copy should have comment or be unexported (golint)
    • Line 166: warning: exported method LispCall.Copy should have comment or be unexported (golint)
    • Line 169: warning: exported method LambdaCall.Copy should have comment or be unexported (golint)
    • Line 176: warning: exported method DynCall.Copy should have comment or be unexported (golint)
    • Line 184: warning: exported method Let.Copy should have comment or be unexported (golint)
    • Line 191: warning: exported method TypeCast.Copy should have comment or be unexported (golint)
    • Line 195: warning: exported method And.Copy should have comment or be unexported (golint)
    • Line 198: warning: exported method Or.Copy should have comment or be unexported (golint)
    • Line 204: warning: exported function CopyList should have comment or be unexported (golint)
    • goism/src/sexp/span.go
    • Line 3: warning: exported type SpanKind should have comment or be unexported (golint)
    • Line 6: warning: exported const SpanLowOnly should have comment (or a comment on this block) or be unexported (golint)
    • Line 12: warning: exported type Span should have comment or be unexported (golint)
    • Line 17: warning: exported method Span.Kind should have comment or be unexported (golint)
    • goism/src/magic_pkg/emacs/rt/funcs.go
    • Line 10: warning: exported var FnIfaceCall should have comment or be unexported (golint)
    • Line 13: warning: exported var FnMakeIface should have comment or be unexported (golint)
    • Line 51: warning: exported function InitFuncs should have comment or be unexported (golint)
    • goism/src/backends/lapc/instr/spec.go
    • Line 92: warning: exported function Concat should have comment or be unexported (golint)
    • Line 102: warning: exported function List should have comment or be unexported (golint)
    • Line 112: warning: exported function StackSet should have comment or be unexported (golint)
    • Line 121: warning: exported function VarSet should have comment or be unexported (golint)
    • Line 130: warning: exported function Discard should have comment or be unexported (golint)
    • Line 139: warning: exported function ConstRef should have comment or be unexported (golint)
    • Line 148: warning: exported function StackRef should have comment or be unexported (golint)
    • Line 157: warning: exported function VarRef should have comment or be unexported (golint)
    • Line 166: warning: exported function Call should have comment or be unexported (golint)
    • goism/src/backends/lapc/ir/instr.go
    • Line 3: warning: exported type InstrKind should have comment or be unexported (golint)
    • Line 6: warning: exported const Empty should have comment (or a comment on this block) or be unexported (golint)
    • goism/src/backends/lapc/ir/unit.go
    • Line 3: warning: exported type Unit should have comment or be unexported (golint)
    • Line 12: warning: exported type InstrPusher should have comment or be unexported (golint)
    • Line 15: warning: exported function NewUnit should have comment or be unexported (golint)
    • Line 22: warning: exported method Unit.Init should have comment or be unexported (golint)
    • Line 30: warning: exported method Unit.Result should have comment or be unexported (golint)
    • Line 32: warning: exported method Unit.InstrPusher should have comment or be unexported (golint)
    • Line 36: warning: exported method Unit.NewLambdaRetLabel should have comment or be unexported (golint)
    • Line 41: warning: exported method Unit.NewLabel should have comment or be unexported (golint)
    • Line 46: warning: exported method Unit.NewUserLabel should have comment or be unexported (golint)
    • Line 55: warning: exported method InstrPusher.PushInstr should have comment or be unexported (golint)
    • Line 78: warning: exported method InstrPusher.Empty should have comment or be unexported (golint)
    • Line 80: warning: exported method InstrPusher.XvarRef should have comment or be unexported (golint)
    • Line 81: warning: exported method InstrPusher.XvarSet should have comment or be unexported (golint)
    • Line 82: warning: exported method InstrPusher.XlocalRef should have comment or be unexported (golint)
    • Line 83: warning: exported method InstrPusher.XlocalSet should have comment or be unexported (golint)
    • Line 84: warning: exported method InstrPusher.Xbind should have comment or be unexported (golint)
    • Line 85: warning: exported method InstrPusher.XscopeEnter should have comment or be unexported (golint)
    • Line 86: warning: exported method InstrPusher.XscopeLeave should have comment or be unexported (golint)
    • Line 87: warning: exported method InstrPusher.Xgoto should have comment or be unexported (golint)
    • Line 88: warning: exported method InstrPusher.XlambdaEnter should have comment or be unexported (golint)
    • Line 89: warning: exported method InstrPusher.XlambdaRet should have comment or be unexported (golint)
    • Line 91: warning: exported method InstrPusher.Label should have comment or be unexported (golint)
    • Line 92: warning: exported method InstrPusher.Jmp should have comment or be unexported (golint)
    • Line 93: warning: exported method InstrPusher.JmpNil should have comment or be unexported (golint)
    • Line 94: warning: exported method InstrPusher.JmpNotNil should have comment or be unexported (golint)
    • Line 95: warning: exported method InstrPusher.JmpNilElsePop should have comment or be unexported (golint)
    • Line 96: warning: exported method InstrPusher.JmpNotNilElsePop should have comment or be unexported (golint)
    • Line 98: warning: exported method InstrPusher.Return should have comment or be unexported (golint)
    • Line 99: warning: exported method InstrPusher.Call should have comment or be unexported (golint)
    • Line 103: warning: exported method InstrPusher.Eq should have comment or be unexported (golint)
    • Line 104: warning: exported method InstrPusher.Equal should have comment or be unexported (golint)
    • Line 105: warning: exported method InstrPusher.Substring should have comment or be unexported (golint)
    • Line 106: warning: exported method InstrPusher.Length should have comment or be unexported (golint)
    • Line 108: warning: exported method InstrPusher.NumEq should have comment or be unexported (golint)
    • Line 109: warning: exported method InstrPusher.NumLt should have comment or be unexported (golint)
    • Line 110: warning: exported method InstrPusher.NumGt should have comment or be unexported (golint)
    • Line 111: warning: exported method InstrPusher.NumLte should have comment or be unexported (golint)
    • Line 112: warning: exported method InstrPusher.NumGte should have comment or be unexported (golint)
    • Line 113: warning: exported method InstrPusher.Add should have comment or be unexported (golint)
    • Line 114: warning: exported method InstrPusher.Sub should have comment or be unexported (golint)
    • Line 115: warning: exported method InstrPusher.Mul should have comment or be unexported (golint)
    • Line 116: warning: exported method InstrPusher.Quo should have comment or be unexported (golint)
    • Line 117: warning: exported method InstrPusher.Add1 should have comment or be unexported (golint)
    • Line 118: warning: exported method InstrPusher.Sub1 should have comment or be unexported (golint)
    • Line 119: warning: exported method InstrPusher.Min should have comment or be unexported (golint)
    • Line 120: warning: exported method InstrPusher.Neg should have comment or be unexported (golint)
    • Line 122: warning: exported method InstrPusher.StrEq should have comment or be unexported (golint)
    • Line 123: warning: exported method InstrPusher.StrLt should have comment or be unexported (golint)
    • Line 124: warning: exported method InstrPusher.Concat should have comment or be unexported (golint)
    • Line 126: warning: exported method InstrPusher.Aref should have comment or be unexported (golint)
    • Line 127: warning: exported method InstrPusher.Aset should have comment or be unexported (golint)
    • Line 129: warning: exported method InstrPusher.Car should have comment or be unexported (golint)
    • Line 130: warning: exported method InstrPusher.Cdr should have comment or be unexported (golint)
    • Line 131: warning: exported method InstrPusher.SetCar should have comment or be unexported (golint)
    • Line 132: warning: exported method InstrPusher.SetCdr should have comment or be unexported (golint)
    • Line 133: warning: exported method InstrPusher.Cons should have comment or be unexported (golint)
    • Line 134: warning: exported method InstrPusher.List should have comment or be unexported (golint)
    • Line 135: warning: exported method InstrPusher.Memq should have comment or be unexported (golint)
    • Line 136: warning: exported method InstrPusher.Member should have comment or be unexported (golint)
    • Line 138: warning: exported method InstrPusher.Stringp should have comment or be unexported (golint)
    • Line 139: warning: exported method InstrPusher.Integerp should have comment or be unexported (golint)
    • Line 140: warning: exported method InstrPusher.Symbolp should have comment or be unexported (golint)
    • Line 141: warning: exported method InstrPusher.Not should have comment or be unexported (golint)
    • Line 143: warning: exported method InstrPusher.ConstRef should have comment or be unexported (golint)
    • Line 144: warning: exported method InstrPusher.StackRef should have comment or be unexported (golint)
    • Line 145: warning: exported method InstrPusher.StackSet should have comment or be unexported (golint)
    • Line 146: warning: exported method InstrPusher.Discard should have comment or be unexported (golint)
    • Line 147: warning: exported method InstrPusher.VarRef should have comment or be unexported (golint)
    • Line 148: warning: exported method InstrPusher.VarSet should have comment or be unexported (golint)
    • goism/src/dt/scope_stack.go
    • Line 3: warning: exported type ScopeStack should have comment or be unexported (golint)
    • Line 8: warning: exported method ScopeStack.SetScopeDepth should have comment or be unexported (golint)
    • Line 12: warning: exported method ScopeStack.PopScope should have comment or be unexported (golint)
    • Line 18: warning: exported method ScopeStack.PushScope should have comment or be unexported (golint)
    • goism/src/backends/lapc/ir/encoding.go
    • Line 3: warning: exported type Encoding should have comment or be unexported (golint)
    • Line 10: warning: exported function EncodingOf should have comment or be unexported (golint)
    • Line 17: warning: exported const AttrTakeNothing should have comment (or a comment on this block) or be unexported (golint)
    • Line 29: warning: exported const AttrPushNothing should have comment (or a comment on this block) or be unexported (golint)
    • goism/src/emacs/rt/type_assert.go
    • Line 7: warning: exported function CoerceBool should have comment or be unexported (golint)
    • Line 14: warning: exported function CoerceInt should have comment or be unexported (golint)
    • Line 21: warning: exported function CoerceFloat should have comment or be unexported (golint)
    • Line 28: warning: exported function CoerceString should have comment or be unexported (golint)
    • Line 35: warning: exported function CoerceSymbol should have comment or be unexported (golint)
    • goism/src/sexp/cost.go
    • Line 64: warning: exported method Bool.Cost should have comment or be unexported (golint)
    • Line 65: warning: exported method Int.Cost should have comment or be unexported (golint)
    • Line 66: warning: exported method Float.Cost should have comment or be unexported (golint)
    • Line 67: warning: exported method Str.Cost should have comment or be unexported (golint)
    • Line 68: warning: exported method Symbol.Cost should have comment or be unexported (golint)
    • Line 69: warning: exported method Var.Cost should have comment or be unexported (golint)
    • Line 70: warning: exported method Local.Cost should have comment or be unexported (golint)
    • Line 72: warning: exported method ArrayLit.Cost should have comment or be unexported (golint)
    • Line 75: warning: exported method SparseArrayLit.Cost should have comment or be unexported (golint)
    • Line 78: warning: exported method SliceLit.Cost should have comment or be unexported (golint)
    • Line 83: warning: exported method StructLit.Cost should have comment or be unexported (golint)
    • Line 88: warning: exported method ArrayUpdate.Cost should have comment or be unexported (golint)
    • Line 91: warning: exported method SliceUpdate.Cost should have comment or be unexported (golint)
    • Line 96: warning: exported method StructUpdate.Cost should have comment or be unexported (golint)
    • Line 100: warning: exported method Bind.Cost should have comment or be unexported (golint)
    • Line 103: warning: exported method Rebind.Cost should have comment or be unexported (golint)
    • Line 106: warning: exported method VarUpdate.Cost should have comment or be unexported (golint)
    • Line 109: warning: exported method FormList.Cost should have comment or be unexported (golint)
    • Line 112: warning: exported method Block.Cost should have comment or be unexported (golint)
    • Line 115: warning: exported method If.Cost should have comment or be unexported (golint)
    • Line 119: warning: exported method Switch.Cost should have comment or be unexported (golint)
    • Line 124: warning: exported method SwitchTrue.Cost should have comment or be unexported (golint)
    • Line 129: warning: exported method Return.Cost should have comment or be unexported (golint)
    • Line 132: warning: exported method ExprStmt.Cost should have comment or be unexported (golint)
    • Line 135: warning: exported method Goto.Cost should have comment or be unexported (golint)
    • Line 136: warning: exported method Label.Cost should have comment or be unexported (golint)
    • Line 138: warning: exported method Repeat.Cost should have comment or be unexported (golint)
    • Line 141: warning: exported method DoTimes.Cost should have comment or be unexported (golint)
    • Line 142: warning: exported method Loop.Cost should have comment or be unexported (golint)
    • Line 143: warning: exported method While.Cost should have comment or be unexported (golint)
    • Line 145: warning: exported method ArrayIndex.Cost should have comment or be unexported (golint)
    • Line 148: warning: exported method SliceIndex.Cost should have comment or be unexported (golint)
    • Line 153: warning: exported method StructIndex.Cost should have comment or be unexported (golint)
    • Line 166: warning: exported method ArraySlice.Cost should have comment or be unexported (golint)
    • Line 169: warning: exported method SliceSlice.Cost should have comment or be unexported (golint)
    • Line 173: warning: exported method TypeAssert.Cost should have comment or be unexported (golint)
    • Line 177: warning: exported method Call.Cost should have comment or be unexported (golint)
    • Line 180: warning: exported method LispCall.Cost should have comment or be unexported (golint)
    • Line 189: warning: exported method LambdaCall.Cost should have comment or be unexported (golint)
    • Line 192: warning: exported method DynCall.Cost should have comment or be unexported (golint)
    • Line 196: warning: exported method Let.Cost should have comment or be unexported (golint)
    • Line 199: warning: exported method TypeCast.Cost should have comment or be unexported (golint)
    • Line 201: warning: exported method And.Cost should have comment or be unexported (golint)
    • Line 204: warning: exported method Or.Cost should have comment or be unexported (golint)
    • goism/src/sexp/new.go
    • Line 10: warning: exported function NewCall should have comment or be unexported (golint)
    • Line 14: warning: exported function NewLispCall should have comment or be unexported (golint)
    • Line 18: warning: exported function NewSubslice should have comment or be unexported (golint)
    • Line 25: warning: exported function NewArraySlice should have comment or be unexported (golint)
    • Line 33: warning: exported function NewSubstr should have comment or be unexported (golint)
    • Line 37: warning: exported function NewNot should have comment or be unexported (golint)
    • Line 38: warning: exported function NewNeg should have comment or be unexported (golint)
    • Line 39: warning: exported function NewAdd1 should have comment or be unexported (golint)
    • Line 40: warning: exported function NewSub1 should have comment or be unexported (golint)
    • Line 42: warning: exported function NewShl should have comment or be unexported (golint)
    • Line 43: warning: exported function NewShr should have comment or be unexported (golint)
    • Line 44: warning: exported function NewBitOr should have comment or be unexported (golint)
    • Line 45: warning: exported function NewBitAnd should have comment or be unexported (golint)
    • Line 46: warning: exported function NewBitXor should have comment or be unexported (golint)
    • Line 47: warning: exported function NewAdd should have comment or be unexported (golint)
    • Line 48: warning: exported function NewSub should have comment or be unexported (golint)
    • Line 49: warning: exported function NewMul should have comment or be unexported (golint)
    • Line 50: warning: exported function NewQuo should have comment or be unexported (golint)
    • Line 51: warning: exported function NewNumEq should have comment or be unexported (golint)
    • Line 52: warning: exported function NewNumNeq should have comment or be unexported (golint)
    • Line 53: warning: exported function NewNumLt should have comment or be unexported (golint)
    • Line 54: warning: exported function NewNumLte should have comment or be unexported (golint)
    • Line 55: warning: exported function NewNumGt should have comment or be unexported (golint)
    • Line 56: warning: exported function NewNumGte should have comment or be unexported (golint)
    • Line 57: warning: exported function NewStrEq should have comment or be unexported (golint)
    • Line 58: warning: exported function NewStrNeq should have comment or be unexported (golint)
    • Line 59: warning: exported function NewStrLt should have comment or be unexported (golint)
    • Line 60: warning: exported function NewStrGt should have comment or be unexported (golint)
    • Line 61: warning: exported function NewConcat should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign99%

IneffAssign detects ineffectual assignments in Go code.


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!