From c3e6c04af517884d1a31ee67f981f9f3fa24fb46 Mon Sep 17 00:00:00 2001 From: Jordon Bedwell Date: Sun, 10 Jan 2016 10:32:29 -0600 Subject: [PATCH] Ignore site/**/* on CodeClimate. --- .codeclimate.yml | 1 + .rubocop.yml | 39 ++++++++++++++++++++------------------- 2 files changed, 21 insertions(+), 19 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 27b8728d..9a8cac63 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -17,6 +17,7 @@ exclude_paths: - COPYING - LICENSE +- site/**/* - test/**/* - vendor/**/* - features/**/* diff --git a/.rubocop.yml b/.rubocop.yml index aa9f765f..31c2df3d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -53,26 +53,27 @@ Style/SingleLineMethods: { Enabled: false } AllCops: TargetRubyVersion: 2.0 Include: - - lib/**/*.rb + - lib/**/*.rb Exclude: - - .rubocop.yml - - .codeclimate.yml - - .travis.yml - - .gitignore - - .rspec + - .rubocop.yml + - .codeclimate.yml + - .travis.yml + - .gitignore + - .rspec - - Gemfile.lock - - CHANGELOG.md - - readme.md - - README.md - - Readme.md - - ReadMe.md - - COPYING - - LICENSE + - Gemfile.lock + - CHANGELOG.md + - readme.md + - README.md + - Readme.md + - ReadMe.md + - COPYING + - LICENSE - - test/**/* - - vendor/**/* - - features/**/* - - script/**/* - - spec/**/* + - site/**/* + - test/**/* + - vendor/**/* + - features/**/* + - script/**/* + - spec/**/*