go-pluto / pluto

A distributed IMAP server based on Conflict-free Replicated Data Types.
GNU General Public License v3.0
65 stars 5 forks source link

Add codeclimate #2

Closed metalmatze closed 7 years ago

metalmatze commented 7 years ago

I would be nice to have a .codeclimate.yml which lints our code for fundamental mistakes in Go.

engines:
 gofmt:
   enabled: true
 golint:
   enabled: true
 govet:
   enabled: true

ratings:
 paths:
 - "**.go"

exclude_paths:
- "vendor/"