From 41f1fc1879fcd56c9cd8580d269945efdae32c98 Mon Sep 17 00:00:00 2001 From: Kevin Stock Date: Thu, 25 Feb 2016 06:55:11 -0800 Subject: [PATCH] Adds configuration for Code Climate --- .codeclimate.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000..0d4aa41 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,14 @@ +engines: + gofmt: + enabled: true + golint: + enabled: true + govet: + enabled: true + fixme: + enabled: true +ratings: + paths: + - "**.go" +exclude_paths: + - bindata_assetfs.go