diff options
author | Markus Doits <markus.doits@stellenticket.de> | 2016-09-11 14:07:29 +0200 |
---|---|---|
committer | Markus Doits <markus.doits@stellenticket.de> | 2016-09-11 14:07:29 +0200 |
commit | 7c0daa97e07ca409d1ee9f394adb4967196c6ca1 (patch) | |
tree | b0c6f13d94ac80df01f070fed183d0b1db47bed9 | |
parent | 2add678227641788598b6df1c29ae492fb384482 (diff) | |
download | pronto-hlint-7c0daa97e07ca409d1ee9f394adb4967196c6ca1.tar.gz pronto-hlint-7c0daa97e07ca409d1ee9f394adb4967196c6ca1.tar.zst pronto-hlint-7c0daa97e07ca409d1ee9f394adb4967196c6ca1.zip |
update rubucop config
-rw-r--r-- | .rubocop.yml | 19 |
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 @@ | |||
1 | AllCops: | ||
2 | DisplayCopNames: true | ||
3 | DisplayStyleGuide: true | ||
4 | |||
1 | Documentation: | 5 | Documentation: |
2 | Enabled: false | 6 | Enabled: false |
3 | 7 | ||
4 | SignalException: | 8 | Metrics/MethodLength: |
5 | EnforcedStyle: only_raise | 9 | Max: 20 |
10 | |||
11 | Metrics/LineLength: | ||
12 | Max: 100 | ||
6 | 13 | ||
7 | MultilineOperationIndentation: | 14 | Metrics/AbcSize: |
8 | EnforcedStyle: indented | 15 | Max: 20 |
9 | 16 | ||
10 | MultilineMethodCallIndentation: | 17 | Metrics/ParameterLists: |
11 | EnforcedStyle: indented | 18 | Max: 10 |