.rubocop.yml in aws_assume_role-0.0.3 vs .rubocop.yml in aws_assume_role-0.1.0
- old
+ new
@@ -1,37 +1,57 @@
---
+#require: rubocop-rspec
AllCops:
DisplayCopNames: true
+ Exclude:
+ - 'lib/aws_assume_role/vendored/**/*.rb'
Metrics/MethodLength:
Enabled: false
+Metrics/AbcSize:
+ Enabled: false
+
+Metrics/BlockLength:
+ Enabled: false
+
+Metrics/ClassLength:
+ Enabled: false
+
+Metrics/CyclomaticComplexity:
+ Enabled: false
+
+Metrics/PerceivedComplexity:
+ Enabled: false
+
Style/IndentationWidth:
Width: 4
+RSpec/ExampleLength:
+ Enabled: false
+
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: comma
-Style/EmptyLinesAroundModuleBody:
- EnforcedStyle: empty_lines
-
-Style/EmptyLinesAroundClassBody:
- EnforcedStyle: empty_lines
-
-Style/EmptyLinesAroundMethodBody:
+Style/ClassAndModuleChildren:
Enabled: false
-Style/EmptyLinesAroundBlockBody:
+Style/Documentation:
Enabled: false
-Metrics/ClassLength:
+Style/VariableName:
Enabled: false
-Metrics/AbcSize:
+Style/StringLiterals:
+ EnforcedStyle: double_quotes
+
+Style/MethodMissing:
Enabled: false
-Metrics/PerceivedComplexity:
+Style/TrivialAccessors:
Enabled: false
+Metrics/LineLength:
+ Max: 140