forked from hbmartin/danger-spm_version_updates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
216 lines (157 loc) · 3.55 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# Defaults can be found here: https://github.com/bbatsov/rubocop/blob/master/config/default.yml
# If you don't like these settings, just delete this file :)
AllCops:
TargetRubyVersion: 2.7
NewCops: enable
Style/MultilineBlockChain:
Enabled: false
Style/MultilineIfModifier:
Enabled: false
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: consistent_comma
RSpec/ExampleLength:
Enabled: false
RSpec/RepeatedExample:
Enabled: false
Style/BlockDelimiters:
Enabled: true
EnforcedStyle: always_braces
Exclude:
- spec/*.rb
Metrics/ModuleLength:
Enabled: true
Exclude:
- spec/*.rb
Layout/ClassStructure:
Enabled: true
Layout/MultilineArrayLineBreaks:
Enabled: true
Layout/MultilineAssignmentLayout:
Enabled: true
EnforcedStyle: same_line
Layout/MultilineHashKeyLineBreaks:
Enabled: true
Layout/MultilineMethodArgumentLineBreaks:
Enabled: true
Layout/MultilineMethodParameterLineBreaks:
Enabled: true
Layout/SingleLineBlockChain:
Enabled: true
Style/AutoResourceCleanup:
Enabled: true
Style/CollectionMethods:
Enabled: true
Style/InvertibleUnlessCondition:
Enabled: true
Style/MethodCallWithArgsParentheses:
Enabled: true
Exclude:
- spec/*.rb
Style/MethodCalledOnDoEndBlock:
Enabled: true
Style/RequireOrder:
Enabled: true
Style/StringMethods:
Enabled: true
Style/TopLevelMethodDefinition:
Enabled: true
Exclude:
- spec/*.rb
Style/StringLiterals:
EnforcedStyle: double_quotes
Enabled: true
# kind_of? is a good way to check a type
Style/ClassCheck:
EnforcedStyle: kind_of?
# specs sometimes have useless assignments, which is fine
Lint/UselessAssignment:
Exclude:
- '**/spec/**/*'
Layout/FirstHashElementIndentation:
Enabled: true
Layout/HashAlignment:
Enabled: true
# HoundCI doesn't like this rule
Layout/DotPosition:
Enabled: false
# We allow !! as it's an easy way to convert to boolean
Style/DoubleNegation:
Enabled: false
# Cop supports --auto-correct.
Lint/UnusedBlockArgument:
Enabled: true
# We want to allow class Fastlane::Class
Style/ClassAndModuleChildren:
Enabled: false
Metrics/AbcSize:
Max: 60
# The %w might be confusing for new users
Style/WordArray:
MinSize: 19
# raise and fail are both okay
Style/SignalException:
Enabled: false
# Having if in the same line might not always be good
Style/IfUnlessModifier:
Enabled: false
Style/AndOr:
Enabled: true
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 350
Metrics/CyclomaticComplexity:
Max: 17
# Configuration parameters: AllowURI, URISchemes.
Layout/LineLength:
Max: 370
# Configuration parameters: CountKeywordArgs.
Metrics/ParameterLists:
Max: 10
Metrics/PerceivedComplexity:
Max: 18
Style/GuardClause:
Enabled: true
Style/ConditionalAssignment:
Enabled: true
# Better to have too much self than missing a self
Style/RedundantSelf:
Enabled: false
Metrics/MethodLength:
Max: 60
# We're not there yet
Style/Documentation:
Enabled: false
# Adds complexity
Style/IfInsideElse:
Enabled: false
# danger specific
Style/BlockComments:
Enabled: false
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
# FIXME: 25
Metrics/BlockLength:
Max: 345
Exclude:
- "**/*_spec.rb"
Style/MixinGrouping:
Enabled: true
Naming/FileName:
Enabled: false
Layout/HeredocIndentation:
Enabled: false
Style/SpecialGlobalVars:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
"%": ()
"%i": ()
"%q": ()
"%Q": ()
"%r": "{}"
"%s": ()
"%w": ()
"%W": ()
"%x": ()
Security/YAMLLoad:
Enabled: false