]> git.immae.eu Git - github/fretlink/pronto-hlint.git/commitdiff
update rubucop config
authorMarkus Doits <markus.doits@stellenticket.de>
Sun, 11 Sep 2016 12:07:29 +0000 (14:07 +0200)
committerMarkus Doits <markus.doits@stellenticket.de>
Sun, 11 Sep 2016 12:07:29 +0000 (14:07 +0200)
.rubocop.yml

index 48d19f3777ccd889310b45ba57962e6c796b07c0..33ec24887a5a3a6f97f2fa3e68ad89c4346f96cc 100644 (file)
@@ -1,11 +1,18 @@
+AllCops:
+  DisplayCopNames: true
+  DisplayStyleGuide: true
+
 Documentation:
   Enabled: false
 
-SignalException:
-  EnforcedStyle: only_raise
+Metrics/MethodLength:
+  Max: 20
+
+Metrics/LineLength:
+  Max: 100
 
-MultilineOperationIndentation:
-  EnforcedStyle: indented
+Metrics/AbcSize:
+  Max: 20
 
-MultilineMethodCallIndentation:
-  EnforcedStyle: indented
+Metrics/ParameterLists:
+  Max: 10