From 5c02e11e45cab6691d0dda1f1a5aee817fbb0ba8 Mon Sep 17 00:00:00 2001 From: Paul van Zyl Date: Tue, 22 Mar 2016 21:28:49 +0200 Subject: [PATCH] codeclimate attempt one Will still need to add instructions for adding your specific project engines (ie: rubocop for ruby, or phpCS etc). JS / SCSS are included as they're likely to both be present in the majority of projects. --- .codeclimate.yml | 14 ++++++++++++++ README.md | 3 +++ 2 files changed, 17 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000..5b2986f --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,14 @@ +engines: + eslint: + enabled: true + scss-lint: + enabled: true + duplication: + enabled: true + config: + languages: + - javascript +ratings: + paths: +exclude_paths: +- node_modules \ No newline at end of file diff --git a/README.md b/README.md index 8562649..b57d524 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,6 @@ explain the basics and any special setup notes / requirements. ## License if its a module, service or demo we're likely to share drop some MIT love on it. + +## Code Climate +have a look at the setup instructions for [code climate here.](https://docs.codeclimate.com/docs/github-pull-request-integration)