-
Notifications
You must be signed in to change notification settings - Fork 89
/
.rubocop.yml
94 lines (72 loc) · 1.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
inherit_from: .rubocop_todo.yml
#### The following group of customizations is questionable. ####
AllCops:
TargetRubyVersion: 2.2
Exclude:
- 'spec/**/*'
- 'benchmarking/**/*'
- 'support/**/*'
- 'integration/**/*'
- 'features/**/*'
- 'tmp/**/*'
# We shouldn't rescue Exception!
Lint/RescueException:
Exclude:
- 'lib/cassandra/executors.rb'
#### Good customizations ####
Layout/MultilineBlockLayout:
Enabled: false
Lint/EndAlignment:
AutoCorrect: true
# Offense count: 78
# Cop supports --auto-correct.
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods.
Lint/UnusedMethodArgument:
Enabled: false
Lint/UselessAssignment:
Exclude:
- 'examples/cql-rb-wrapper.rb'
Metrics/ClassLength:
Enabled: false
Metrics/LineLength:
Max: 120
# To make it possible to copy or click on URIs in the code, we allow lines
# contaning a URI to be longer than Max.
AllowHeredoc: true
AllowURI: true
URISchemes:
- http
- https
Metrics/MethodLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Metrics/ParameterLists:
Enabled: false
Naming/FileName:
Exclude:
- 'examples/cql-rb-wrapper.rb'
Naming/PredicateName:
NamePrefixBlacklist: is_, have_
NameWhitelist: is_a?
Style/IfUnlessModifier:
MaxLineLength: 120
Style/MultilineTernaryOperator:
Enabled: false
# Offense count: 3
# Cop supports --auto-correct.
Style/MutableConstant:
Exclude:
- 'lib/cassandra/protocol/response.rb'
- 'lib/cassandra/protocol/responses/event_response.rb'
- 'lib/cassandra/protocol/responses/result_response.rb'
Style/RaiseArgs:
Enabled: false
Style/SignalException:
EnforcedStyle: only_raise
Style/SingleLineBlockParams:
Enabled: false
Style/TrivialAccessors:
Enabled: false
Style/WhileUntilModifier:
MaxLineLength: 120