.rubocop.yml in data_structures_101-0.2.7 vs .rubocop.yml in data_structures_101-0.2.8
- old
+ new
@@ -1,19 +1,25 @@
AllCops:
+ Exclude:
+ - bin/**/*
+ - tasks/**/*
TargetRubyVersion: 2.4
Metrics/MethodLength:
Max: 30
CountComments: false
Metrics/AbcSize:
Exclude:
- spec/**/*
+ - perf/**/*
Max: 20
Metrics/CyclomaticComplexity:
Max: 10
Metrics/BlockLength:
Exclude:
- spec/**/*
+ - perf/**/*
Metrics/LineLength:
Exclude:
- spec/**/*
+ - perf/**/*
Style/FrozenStringLiteralComment:
EnforcedStyle: always
\ No newline at end of file