.rubocop.yml in ballast-2.2.3 vs .rubocop.yml in ballast-2.2.4

- old
+ new

@@ -1,38 +1,80 @@ -AsciiComments: +AllCops: + TargetRubyVersion: 2.3 + Include: + - "*/**/.rb" + - "config.ru" + - "Rakefile" + - "Gemfile" + Exclude: + - "config/**/*" + - "db/**/*" + - "spec/**/*" + +Alias: Enabled: false -Blocks: +AsciiComments: Enabled: false BracesAroundHashParameters: Enabled: false CyclomaticComplexity: Max: 15 +ClassLength: + Max: 150 + +Documentation: + Enabled: false + EachWithObject: Enabled: false -IndentationConsistency: +FormatString: Enabled: false +FrozenStringLiteralComment: + Enabled: false + IndentHash: Enabled: false +IndentationConsistency: + Enabled: false + LineLength: Max: 160 +MethodLength: + Max: 15 + +ModuleLength: + Max: 200 + +MultilineMethodCallIndentation: + Enabled: false + ParameterLists: - Max: 6 + Max: 8 +RegexpLiteral: + Enabled: false + SignalException: Enabled: false SpaceInsideHashLiteralBraces: Enabled: false StringLiterals: Enabled: false -TrivialAccessors: +StringLiteralsInInterpolation: + Enabled: false + +StringReplacement: + Enabled: false + +WordArray: Enabled: false \ No newline at end of file