From ed47fbf5be13d83568ec967b3f49f9839cbe1ed3 Mon Sep 17 00:00:00 2001 From: Devin Howard Date: Thu, 30 Jun 2016 11:47:37 +0800 Subject: [PATCH] update rubocop.yml to ignore half of the remaining cops --- .rubocop.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 43a09811..9fb58aba 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,14 @@ AllCops: TargetRubyVersion: 2.3 + Exclude: + - 'db/**/*' + - 'tmp/**/*' + - 'bin/**/*' + - 'vendor/**/*' + - 'app/assets/javascripts/node_modules/**/*' Rails: Enabled: true + +Metrics/LineLength: + Max: 100