Example .codeclimate.yml

Below is an example .codeclimate.yml which is configured for our engines-based (plugin-based) analysis platform.

plugins:
  rubocop:
    enabled: true
    #checks:
    #  Rubocop/Metrics/ClassLength:
    #    enabled: false
  brakeman:
    enabled: true
  eslint:
    enabled: true
  csslint:
    enabled: true
  duplication:
    enabled: true
    config:
      languages:
      - ruby:
      - javascript:
exclude_paths:
- spec/**/*
- "**/vendor/**/*"