.rubocop.yml in foreplay-0.1.5 vs .rubocop.yml in foreplay-0.1.6

- old
+ new

@@ -1,8 +1,8 @@ LineLength: - Description: 'Limit lines to 120 characters.' - Max: 120 + Description: 'Limit lines to 137 characters.' + Max: 137 Enabled: true FileName: Description: 'Use snake_case for source file names.' Enabled: false @@ -12,5 +12,14 @@ Enabled: false Documentation: Description: 'Document classes and non-namespace modules.' Enabled: false + +CyclomaticComplexity: + Description: 'Avoid complex methods.' + Max: 13 + +ClassLength: + Description: 'Avoid classes longer than 100 lines of code.' + CountComments: false # count full line comments? + Max: 269