From e177ff305aadb14e38480b4d7624e2286674b167 Mon Sep 17 00:00:00 2001 From: Scott Larkin Date: Thu, 17 Nov 2016 12:40:23 -0500 Subject: [PATCH] Create .codeclimate.yml Created a .codeclimate.yml configuration file that will work with your existing configurations for ESLint and Rubocop. --- .codeclimate.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 000000000..f0c238b18 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,18 @@ +engines: + duplication: + enabled: true + config: + languages: + - ruby + - javascript + rubocop: + enabled: true + eslint: + enabled: true +ratings: + paths: + - "**.rb" + - "**.js" +exclude_paths: +- spec/ +- vendor/asset