From bc1f6efc407e3371a2c622d29f23c11bc7b80c24 Mon Sep 17 00:00:00 2001 From: Gerard Caulfield Date: Mon, 4 Jul 2016 16:57:23 +1000 Subject: [PATCH] Add rubycop checking to codeclimate According to the Contributing guide (https://github.com/awesome-print/awesome_print/blob/master/CONTRIBUTING.md) we encourage sticking to the Ruby style guide. However our code climate setup does not use the Rubocop engine to check against this style guide. This commit enables the Rubocop checking. I'm not 100% sure if this affects the code climate score, but even if it is I think this is for the best as currently we are just hiding the issues. --- .codeclimate | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .codeclimate diff --git a/.codeclimate b/.codeclimate new file mode 100644 index 0000000..789aa8b --- /dev/null +++ b/.codeclimate @@ -0,0 +1,3 @@ +engines: + rubocop: + enabled: true