.rubocop.yml in statesman-3.0.0 vs .rubocop.yml in statesman-3.1.0
- old
+ new
@@ -1,8 +1,11 @@
# For all options see https://github.com/bbatsov/rubocop/tree/master/config
+inherit_from: .rubocop_todo.yml
+
AllCops:
+ DisplayCopNames: true
Include:
- Rakefile
- statesman.gemfile
- lib/tasks/*.rake
Exclude:
@@ -35,14 +38,23 @@
Max: 80
GuardClause:
Enabled: false
-SingleSpaceBeforeFirstArg:
+Layout/SpaceBeforeFirstArg:
Enabled: false
DotPosition:
EnforcedStyle: trailing
# Allow class and message or instance raises
Style/RaiseArgs:
Enabled: false
+
+Metrics/BlockLength:
+ Exclude:
+ - spec/**/*
+
+Style/FileName:
+ Exclude:
+ - Gemfile
+ - Guardfile