-
Notifications
You must be signed in to change notification settings - Fork 2
/
.rubocop.yml
71 lines (53 loc) · 1.14 KB
/
.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Lint/ParenthesesAsGroupedExpression:
Enabled: true
Exclude:
- 'spec/**/*'
Metrics/ModuleLength:
Exclude:
- "**/*_spec.rb"
Metrics/BlockLength:
Exclude:
- "**/*_spec.rb"
Style/BlockDelimiters:
Enabled: true
Exclude:
- 'spec/**/*'
Style/Documentation:
Enabled: false
Style/EmptyLinesAroundClassBody:
Enabled: false
Style/EmptyLinesAroundModuleBody:
Enabled: false
Style/GuardClause:
Enabled: false
Style/PredicateName:
Enabled: false
Style/SignalException:
Enabled: false
Style/SpaceAroundEqualsInParameterDefault:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/ZeroLengthPredicate:
Enabled: false
# Offense count: 9
Metrics/AbcSize:
Enabled: false
# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ClassLength:
Enabled: false
# Offense count: 2
Metrics/CyclomaticComplexity:
Enabled: false
# Offense count: 79
# Configuration parameters: AllowURI, URISchemes.
Metrics/LineLength:
Enabled: false
# Offense count: 10
# Configuration parameters: CountComments.
Metrics/MethodLength:
Enabled: false
# Offense count: 2
Metrics/PerceivedComplexity:
Enabled: false