.rubocop_cocoapods.yml in cocoapods-plugins-0.3.2 vs .rubocop_cocoapods.yml in cocoapods-plugins-0.4.0
- old
+ new
@@ -40,15 +40,37 @@
# Having these make it easier to *not* forget to add one when adding a new
# value and you can simply copy the previous line.
TrailingComma:
EnforcedStyleForMultiline: comma
+Style/MultilineOperationIndentation:
+ EnforcedStyle: indented
+
# Clashes with CLAide Command#validate!
GuardClause:
Enabled: false
# Not always desirable: lib/claide/command/plugins_helper.rb:12:15
Next:
+ Enabled: false
+
+# Arbitrary max lengths for classes simply do not work and enabling this will
+# lead to a never ending stream of annoyance and changes.
+Metrics/ClassLength:
+ Enabled: false
+
+# No enforced convention here.
+Metrics/BlockNesting:
+ Enabled: false
+
+# It will be obvious which code is complex, Rubocop should only lint simple
+# rules for us.
+Metrics/AbcSize:
+ Enabled: false
+
+# It will be obvious which code is complex, Rubocop should only lint simple
+# rules for us.
+Metrics/CyclomaticComplexity:
Enabled: false
#- CocoaPods support for Ruby 1.8.7 ------------------------------------------#
HashSyntax: