aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarkus Doits <markus.doits@stellenticket.de>2016-09-11 14:07:29 +0200
committerMarkus Doits <markus.doits@stellenticket.de>2016-09-11 14:07:29 +0200
commit7c0daa97e07ca409d1ee9f394adb4967196c6ca1 (patch)
treeb0c6f13d94ac80df01f070fed183d0b1db47bed9
parent2add678227641788598b6df1c29ae492fb384482 (diff)
downloadpronto-hlint-7c0daa97e07ca409d1ee9f394adb4967196c6ca1.tar.gz
pronto-hlint-7c0daa97e07ca409d1ee9f394adb4967196c6ca1.tar.zst
pronto-hlint-7c0daa97e07ca409d1ee9f394adb4967196c6ca1.zip
update rubucop config
-rw-r--r--.rubocop.yml19
1 files changed, 13 insertions, 6 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 48d19f3..33ec248 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,11 +1,18 @@
1AllCops:
2 DisplayCopNames: true
3 DisplayStyleGuide: true
4
1Documentation: 5Documentation:
2 Enabled: false 6 Enabled: false
3 7
4SignalException: 8Metrics/MethodLength:
5 EnforcedStyle: only_raise 9 Max: 20
10
11Metrics/LineLength:
12 Max: 100
6 13
7MultilineOperationIndentation: 14Metrics/AbcSize:
8 EnforcedStyle: indented 15 Max: 20
9 16
10MultilineMethodCallIndentation: 17Metrics/ParameterLists:
11 EnforcedStyle: indented 18 Max: 10