From e7aa1a2042ecc2e2fbb013e44af7d83d1514006c Mon Sep 17 00:00:00 2001 From: Petr Korolev Date: Fri, 27 Mar 2015 03:52:49 +0200 Subject: [PATCH] fix rubocop yml --- .rubocop.yml | 6 ++---- Gemfile | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index c9a8511..e2408a8 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,10 +1,8 @@ inherit_from: .rubocop_todo.yml AllCops: - Excludes: - - bin/** - - db/** - - config/** + Exclude: + - 'bin/**' Metrics/LineLength: Enabled: false diff --git a/Gemfile b/Gemfile index 598416a..c51ac52 100644 --- a/Gemfile +++ b/Gemfile @@ -9,5 +9,5 @@ group :test do gem 'rspec' gem 'rubocop' gem 'coveralls', require: false - gem "codeclimate-test-reporter", require: nil + gem 'codeclimate-test-reporter', require: nil end