diff options
author | Scott Larkin <scott@codeclimate.com> | 2016-11-17 12:40:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-17 12:40:23 -0500 |
commit | e177ff305aadb14e38480b4d7624e2286674b167 (patch) | |
tree | f3bf78ed82a72e6e2e010149e6c85538ad488b93 | |
parent | a6e4f754fc4dd025be55c6d6362e8c5e98a299d9 (diff) |
Create .codeclimate.yml
Created a .codeclimate.yml configuration file that will work with your existing configurations for ESLint and Rubocop.
-rw-r--r-- | .codeclimate.yml | 18 |
1 files changed, 18 insertions, 0 deletions
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 |