From 9d92062b081a76a2981a70bce2e988a91d2c9b9a Mon Sep 17 00:00:00 2001 From: Piotr Kuczynski Date: Fri, 23 Dec 2016 02:20:39 +0100 Subject: [PATCH] Enable more code-climate engines (rubocop, reek, bundler-audit, duplication) --- .codeclimate.yml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 472f78e7..8fcd792f 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,9 +1,24 @@ -languages: - Ruby: true - JavaScript: false - PHP: false engines: + rubocop: + enabled: true + reek: + enabled: true + bundler-audit: + enabled: true + duplication: + enabled: true + config: + languages: + ruby: + mass_threshold: 18 markdownlint: enabled: true + +ratings: + paths: + - Gemfile.lock + - "**.rb" + - "**.md" + exclude_paths: - "spec/app/**/*"