From 8c71300e7057e2a07a89855796f1558fa0d7be78 Mon Sep 17 00:00:00 2001 From: 0xazure Date: Tue, 31 Mar 2015 23:12:09 -0400 Subject: [PATCH] Rubocop: silence warnings about indentation consistency Rubocop doesn't (yet) support the Rails style of private method indentation (see bbatsov/rubocop#1342). --- .rubocop.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 20e4eae..5fa0d65 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -12,8 +12,14 @@ Metrics/LineLength: Style/ClassAndModuleChildren: Enabled: false +Style/CommentIndentation: + Enabled: false + Style/Documentation: Enabled: false +Style/IndentationConsistency: + Enabled: false + Style/StringLiterals: EnforcedStyle: double_quotes