forked from AgileVentures/MetPlus_PETS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
42 lines (36 loc) · 784 Bytes
/
.rubocop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Style/StringLiterals:
EnforcedStyle: single_quotes
AllCops:
Exclude:
- 'tmp/**/*'
TargetRubyVersion: 2.3
Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Layout/DotPosition:
Description: 'Checks the position of the dot in multi-line method call'
EnforcedStyle: leading
Style/Documentation:
Enabled: false
Layout/SpaceBeforeBlockBraces:
Enabled: true
Style/MethodDefParentheses:
Enabled: true
Metrics/LineLength:
Max: 90
Metrics/BlockLength:
Enabled: true
Exclude:
- spec/**/*
- features/step_definitions/*
Metrics/ModuleLength:
Enabled: true
Exclude:
- spec/**/*
- features/step_definitions/*
Metrics/MethodLength:
Enabled: true
Exclude:
- spec/**/*
- features/step_definitions/*