Preparing report...

Report for github.com/gnames/gnfinder

A+    Excellent!    Found 18 issues across 45 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!


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.


golint62%

Golint is a linter for Go source code.

    • gnfinder/ent/token/features.go
    • Line 100: warning: exported method Features.SetUninomialDict should have comment or be unexported (golint)
    • Line 128: warning: exported method Features.SetSpeciesDict should have comment or be unexported (golint)
    • Line 147: warning: exported method Features.SetRank should have comment or be unexported (golint)
    • gnfinder/tools/training/trainer.go
    • Line 20: warning: exported type FileName should have comment or be unexported (golint)
    • Line 25: warning: exported type TrainingData should have comment or be unexported (golint)
    • Line 27: warning: exported type TextData should have comment or be unexported (golint)
    • Line 32: warning: exported type NamesPositions should have comment or be unexported (golint)
    • Line 34: warning: exported type NameData should have comment or be unexported (golint)
    • Line 47: warning: comment on exported function NewTrainingLanguageData should be of the form "NewTrainingLanguageData ..." (golint)
    • gnfinder/ent/api/params.go
    • Line 3: warning: comment on exported type FinderParams should be of the form "FinderParams ..." (with optional leading article) (golint)
    • gnfinder/ent/nlp/bayes.go
    • Line 15: warning: exported function TagTokens should have comment or be unexported (golint)
    • Line 166: warning: exported function BayesWeights should have comment or be unexported (golint)
    • gnfinder/ent/nlp/features.go
    • Line 24: warning: exported method FeatureSet.Flatten should have comment or be unexported (golint)
    • Line 41: warning: comment on exported function NewFeatureSet should be of the form "NewFeatureSet ..." (golint)
    • gnfinder/ent/nlp/label.go
    • Line 7: warning: exported type Label should have comment or be unexported (golint)
    • Line 10: warning: exported const NotName should have comment (or a comment on this block) or be unexported (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!


misspell93%

Misspell Finds commonly misspelled English words