config/rubocop.yml in rubocop-gem_dev-0.2.0 vs config/rubocop.yml in rubocop-gem_dev-0.3.0

- old
+ new

@@ -1,12 +1,24 @@ AllCops: # Exclude auto-generated files by Rails Exclude: - 'vendor/bundle/**/*' +# Items in Gemfile are dev dependencies and we don't have to specify versions. +Bundler/GemVersion: + Enabled: false + +# We usually have LISENCE file that describes cipyright information. +Style/Copyright: + Enabled: false + # Double negation is a famous Ruby idiom, # why not using it with confidence? Style/DoubleNegation: + Enabled: false + +# It's absolutely fine to use inline comments +Style/InlineComment: Enabled: false # Changing require order affects code execution # This should not be a style cop Style/RequireOrder: