-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.rubocop.yml
193 lines (135 loc) · 3.21 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
require: rubocop-rails
inherit_from: .rubocop_todo.yml
AllCops:
Exclude:
- 'db/**/*'
- 'lib/tasks/**/*'
- 'vendor/**/*'
# The "offical" rubocop style guide is indeed quite strict. So intead, we use
# the Relaxed Ruby Style guide. https://relaxed.ruby.style/
inherit_gem:
relaxed-rubocop: .rubocop.yml
Style/RedundantSelf:
Enabled: false
Style/RescueStandardError:
EnforcedStyle: implicit
Style/FrozenStringLiteralComment:
Exclude:
- 'app/views/**/*.jbuilder'
Lint/UselessAssignment:
Enabled: false
Layout/EmptyLinesAroundClassBody:
EnforcedStyle: ending_only
Layout/EmptyLinesAroundBlockBody:
Enabled: false
Style/AndOr:
EnforcedStyle: conditionals
Style/RedundantReturn:
Enabled: false
Style/StringLiteralsInInterpolation:
Enabled: false
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
Layout/HashAlignment:
EnforcedHashRocketStyle: table
Style/NumericLiterals:
Enabled: false
Style/SymbolProc:
Enabled: false
Naming/MethodParameterName:
Enabled: false
Style/EmptyMethod:
Enabled: false
Style/RedundantBegin:
Enabled: false
Style/ZeroLengthPredicate:
Enabled: false
Layout/EmptyLines:
Enabled: false
Style/RaiseArgs:
Enabled: false
Naming/PredicateName:
Enabled: false
Style/ConditionalAssignment:
Enabled: false
Lint/UnusedMethodArgument:
Enabled: false
Style/EmptyElse:
Enabled: false
Layout/EmptyLineBetweenDefs:
NumberOfEmptyLines: [1, 2, 3, 4, 5]
Style/CommentedKeyword:
Enabled: false
Lint/SuppressedException:
Enabled: false
Lint/UnusedBlockArgument:
Enabled: false
Layout/EmptyLinesAroundMethodBody:
Enabled: false
Layout/EmptyLinesAroundModuleBody:
Enabled: false
Lint/UselessAccessModifier:
Enabled: false
Style/ParenthesesAroundCondition:
Enabled: false
Layout/EmptyLinesAroundExceptionHandlingKeywords:
Enabled: false
Layout/MultilineHashBraceLayout:
EnforcedStyle: new_line
Style/RescueModifier:
Enabled: false
Layout/SpaceInsideStringInterpolation:
Enabled: false
Naming/RescuedExceptionsVariableName:
Enabled: false
Style/Encoding:
Enabled: false
Style/IfInsideElse:
Enabled: false
Style/MixinUsage:
Enabled: false
Style/TrivialAccessors:
Enabled: false
Style/RegexpLiteral:
EnforcedStyle: mixed
AllowInnerSlashes: true
Layout/DotPosition:
Enabled: true
# Layout/CommentIndentation:
# AllowForAlignment: true # this is erroring
# Metrics/LineLength:
# Max: 80
Bundler/OrderedGems:
Enabled: false
Naming/AccessorMethodName:
Enabled: false
Style/HashLikeCase:
Enabled: false
Style/FormatStringToken:
EnforcedStyle: template
Style/ClassAndModuleChildren:
Exclude:
- 'config/**/*.rb'
- 'app/models/ahoy/{event,visit}.rb'
Rails/UnknownEnv:
Environments:
- production
- development
- test
- staging
Rails/RequestReferer:
EnforcedStyle: referrer
Rails/ApplicationController:
Exclude:
- 'app/controllers/docs/api_controller.rb'
- 'app/controllers/stripe_controller.rb'
- 'app/controllers/twilio_controller.rb'
- 'app/controllers/docuseal_controller.rb'
- 'app/controllers/column/webhooks_controller.rb'
Rails/HasAndBelongsToMany:
Enabled: false
Rails/Validation:
Enabled: false
Rails/UniqueValidationWithoutIndex:
Enabled: false