.rubocop.yml in simply_fsm-0.1.1 vs .rubocop.yml in simply_fsm-0.1.2
- old
+ new
@@ -1,13 +1,27 @@
AllCops:
TargetRubyVersion: 2.7
+Naming/FileName:
+ Exclude:
+ - Rakefile
+
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: double_quotes
Layout/LineLength:
Max: 120
+
+Metrics/MethodLength:
+ Max: 16
+
+Metrics/ClassLength:
+ Max: 256
+
+Metrics/BlockLength:
+ Exclude:
+ - 'spec/**/*'
\ No newline at end of file