.rubocop.yml in danger-apkstats-0.0.2 vs .rubocop.yml in danger-apkstats-0.1.0
- old
+ new
@@ -1,12 +1,21 @@
# Defaults can be found here: https://github.com/bbatsov/rubocop/blob/master/config/default.yml
# If you don't like these settings, just delete this file :)
AllCops:
- TargetRubyVersion: 2.0
+ Exclude:
+ - 'vendor/**/*'
+ - 'spec/fixtures/**/*'
+ - 'tmp/**/*'
+ TargetRubyVersion: 2.3.7
+Metrics/ModuleLength:
+ Exclude:
+ - 'spec/**/*'
+ Enabled: true
+
Style/StringLiterals:
EnforcedStyle: double_quotes
Enabled: true
# kind_of? is a good way to check a type
@@ -148,5 +157,14 @@
"%W": ()
"%x": ()
Security/YAMLLoad:
Enabled: false
+
+Style/TrailingCommaInArguments:
+ Enabled: true
+
+Style/TrailingCommaInArrayLiteral:
+ Enabled: false
+
+Style/TrailingCommaInHashLiteral:
+ Enabled: false
\ No newline at end of file