.rubocop.yml in xml-mapping_extensions-0.4.7 vs .rubocop.yml in xml-mapping_extensions-0.4.8

- old
+ new

@@ -1,5 +1,9 @@ +AllCops: + # Suppress complaints about post-2.0 syntax + TargetRubyVersion: 2.2 + # Disable line-length check; it's too easy for the cure to be worse than the disease Metrics/LineLength: Enabled: False # Disable problematic module documentation check (see https://github.com/bbatsov/rubocop/issues/947) @@ -14,6 +18,18 @@ Style/EmptyLinesAroundModuleBody: Enabled: false # Allow one line around block body (Style/EmptyLines will still disallow two or more) Style/EmptyLinesAroundBlockBody: + Enabled: false + +# Unclear why it's a good idea to give parameters semantically meaningless names +Style/SingleLineBlockParams: + Enabled: false + +# Produces monsters +Style/MultilineOperationIndentation: + Enabled: false + +# 👎 to cultural imperialism +Style/AsciiComments: Enabled: false