godeep / goreporter

A Golang tool that does static analysis, unit testing, code review and generate code quality report.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

goreporter

goreporter

Build Status GoDoc License

A Golang tool that does static analysis, unit testing, code review and generate code quality report. This is a tool that concurrently runs a whole bunch of those linters and normalises their output to a report:

Supported linters

  • unittest - Golang unit test status.
  • deadcode - Finds unused code.
  • gocyclo - Computes the cyclomatic complexity of functions.
  • varcheck - Find unused global variables and constants.
  • structcheck - Find unused struct fields.
  • aligncheck - Warn about un-optimally aligned structures.
  • errcheck - Check that error return values are used.
  • copycode(dupl) - Reports potentially duplicated code.
  • gosimple - Report simplifications in code.
  • staticcheck - Statically detect bugs, both obvious and subtle ones.
  • godepgraph - Godepgraph is a program for generating a dependency graph of Go packages.
  • misspell - Correct commonly misspelled English words... quickly.

Supported template

  • html template file which can be loaded via -t <file>.

Installing

There are two options for installing goreporter.

    1. Install a stable version, eg. go get -u github.com/wgliang/goreporter/tree/version-1.0.0. I will generally only tag a new stable version when it has passed the Travis regression tests. The downside is that the binary will be called goreporter.version-1.0.0.
    1. Install from HEAD with: go get -u github.com/wgliang/goreporter. This has the downside that changes to goreporter may break.

Quickstart

Install goreporter (see above).

Run it:

$ goreporter -p [projtectRelativelyPath] -d [reportPath] -e [exceptPackagesName] -r [json/html]  {-t templatePathIfHtml}

Example

$ goreporter -p ../goreporter -d ../goreporter -t ./templates/template.html

you can see result detail:Example-Report

Summary

summary

UnitTest

unittest

SimpleCode

simplecode

DeadCode & CopyCode

deadcodeandcopycode

Report-example

Example-Report

Credits

Templates is designed by liufeifei

Logo is desigend by xuri

About

A Golang tool that does static analysis, unit testing, code review and generate code quality report.

License:Apache License 2.0


Languages

Language:Go 88.4%Language:HTML 11.5%Language:Makefile 0.1%Language:Shell 0.0%