.rubocop.yml in steppy-0.8.0 vs .rubocop.yml in steppy-1.0.0

- old
+ new

@@ -1,5 +1,6 @@ +--- inherit_from: - .rubocop_airbnb.yml Metrics/LineLength: Max: 100 @@ -9,19 +10,25 @@ Enabled: true EnforcedStyle: always SupportedStyles: - always -Style/StringLiterals: - Enabled: true - AllCops: TargetRubyVersion: 2.5 Airbnb/ClassOrModuleDeclaredInWrongFile: Enabled: false Airbnb/ModuleMethodInWrongFile: Enabled: false +Airbnb/OptArgParameters: + Enabled: false + Lint/EndAlignment: EnforcedStyleAlignWith: variable + +Style/StringLiterals: + EnforcedStyle: single_quotes + SupportedStyles: + - single_quotes + - double_quotes