diff options
-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 |