From 7d3f0da75c2f74264f5f9016f822508a9e10b9d2 Mon Sep 17 00:00:00 2001 From: Scott Larkin Date: Mon, 5 Dec 2016 16:06:17 -0500 Subject: [PATCH 1/2] Create .codeclimate.yml Created a Code Climate config that uses your existing ESLint configuration (also, enabled our Duplication engine). --- .codeclimate.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000000..3e82c0d31b --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,12 @@ +engines: + duplication: + enabled: true + config: + languages: + - javascript + eslint: + enabled: true +ratings: + paths: + - "**.js" +exclude_paths: From 2cf9a07bb2daaa3a984db583ac5a4387b47200fd Mon Sep 17 00:00:00 2001 From: Scott Larkin Date: Wed, 14 Dec 2016 15:11:07 -0500 Subject: [PATCH 2/2] Update .codeclimate.yml --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 3e82c0d31b..59c835354c 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -10,3 +10,4 @@ ratings: paths: - "**.js" exclude_paths: +- node_modules/