.rubocop.yml in dry-monads-0.0.2 vs .rubocop.yml in dry-monads-0.1.0

- old
+ new

@@ -1,7 +1,12 @@ inherit_from: .rubocop_todo.yml +AllCops: + Exclude: + - 'spec/integration/either_spec.rb' + - 'vendor/**/*' + Style/Documentation: Enabled: false Style/StringLiterals: Enabled: false @@ -20,9 +25,24 @@ Style/MultilineBlockChain: Enabled: false Style/GuardClause: + Enabled: false + +Style/SymbolProc: + Exclude: + # This rule is broken in specs on purpose to make examples clearer + - 'spec/**/*' + +Style/SignalException: + Exclude: + - 'spec/**/*' + +Style/ModuleFunction: + Enabled: false + +Style/RescueModifier: Enabled: false Metrics/LineLength: Max: 110