diff --git a/.rubocop.yml b/.rubocop.yml index b33c71ee..65726870 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,15 +1,24 @@ -LineLength: +AllCops: + Exclude: + - 'Guardfile' + NewCops: enable + +Layout/LineLength: Max: 120 -Documentation: +Lint/AmbiguousBlockAssociation: + Exclude: + - spec/**/*_spec.rb + +Metrics/AbcSize: Enabled: false -AllCops: +Metrics/BlockLength: Exclude: - - 'Guardfile' + - spec/**/*_spec.rb -Metrics/AbcSize: +Style/BlockDelimiters: Enabled: false -Style/EmptyMethod: +Style/Documentation: Enabled: false