-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
202 lines (161 loc) · 5.54 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
inherit_from:
- .rubocop_rspec.yml
- .rubocop_rails.yml
- .rubocop_todo.yml
AllCops:
TargetRubyVersion: 3.1.0
NewCops: enable
DisplayCopNames: true
DisplayStyleGuide: true
SuggestExtensions: false
Include:
- '**/*.rb'
- '**/Rakefile'
Exclude:
- 'db/**/*'
- 'config/**/*'
- 'script/**/*'
- 'bin/*'
- 'storage/**/*'
- node_modules/**/* # why the fuck is rubocop running against node_modules
- vendor/**/* # disable rubocop-ing the gem install path in travis
# Configuration parameters: Include, TreatCommentsAsGroupSeparators.
# Include: **/Gemfile, **/gems.rb
Bundler/OrderedGems:
TreatCommentsAsGroupSeparators: true
Metrics/AbcSize:
Max: 30
# This is an issue for most DSL's and since ruby is highly conducive to DSL's
# this rule doesn't really make a lot of sense and is really a deterant towards
# a tool of the language
Metrics/BlockLength:
Enabled: false
Exclude:
- db/**/*.rb
- spec/**/**_spec.rb
- spec/support/examples/**.rb
- config/routes/**/*.rb
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Layout/LineLength:
Max: 120
AllowHeredoc: true
AllowURI: true
IgnoredPatterns:
- logger.* # Ignore lines that log info, sometimes its better to have it all on a longer line
- \A# # Exclude comment lines, not sure why it doesn't already but ¯\_(ツ)_/¯
- fail*
Metrics/MethodLength:
Max: 30
Metrics/ModuleLength:
Enabled: false
# Multi-line method chaining should be done with leading dots.
Layout/DotPosition:
EnforcedStyle: leading
# Use empty lines between defs.
Layout/EmptyLineBetweenDefs:
# If `true`, this parameter means that single line method definitions don't
# need an empty line between them.
AllowAdjacentOneLineDefs: true
# Can be array to specify minimum and maximum number of empty lines, e.g. [1, 2]
NumberOfEmptyLines: 1
# Configuration parameters: SupportedStyles, IndentationWidth.
# SupportedStyles: special_inside_parentheses, consistent, align_braces
Layout/FirstHashElementIndentation:
EnforcedStyle: consistent
Layout/FirstArrayElementIndentation:
EnforcedStyle: consistent
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
# Ashby tends to put a space after a not so that its easier to see and pick out
Layout/SpaceAfterNot:
Enabled: false
# Configuration parameters: SupportedStyles.
# SupportedStyles: space, no_space
Layout/SpaceAroundEqualsInParameterDefault:
EnforcedStyle: no_space
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: space, no_space
Layout/SpaceBeforeBlockBraces:
EnforcedStyle: space
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: space, no_space
Layout/SpaceInsideStringInterpolation:
EnforcedStyle: space
Layout/SpaceInsideReferenceBrackets:
Enabled: false
Layout/SpaceInsideArrayLiteralBrackets:
Enabled: false
Layout/SpaceInsideParens:
Enabled: false
# Spaces make things easier to read
Layout/SpaceInsidePercentLiteralDelimiters:
Enabled: false
# Need a new line but don't have a blank line
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: final_newline, final_blank_line
Layout/TrailingEmptyLines:
EnforcedStyle: final_newline
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: prefer_alias, prefer_alias_method
Style/Alias:
Enabled: false # Use either as we see fit
# All of rails uses this compact definition so lets just not fight it
Style/ClassAndModuleChildren:
Enabled: false
# This is the ugliest rule and makes it hard to read what is getting
# assigned, imo.
Style/ConditionalAssignment:
Enabled: false
Style/Documentation:
Enabled: false # Eventually this should be turned of but for now lots of things remain undocumented
# Why use a method to check if a number is a number?
# This normally wants you to use #zero? instead of == 0 which seems rightly
# ludicrous.
Style/NumericPredicate:
Enabled: false
Style/NumericLiterals:
Enabled: false
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: require_parentheses, require_no_parentheses, require_no_parentheses_except_multiline
Style/MethodDefParentheses:
Enabled: false
#EnforcedStyle: require_no_parentheses_except_multiline
# Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
# SupportedStyles: slashes, percent_r, mixed
Style/RegexpLiteral:
EnforcedStyle: percent_r # use %r{} for defining regex instead of //
Style/SignalException:
EnforcedStyle: only_fail
# Configuration parameters: EnforcedStyle, SupportedStyles, ConsistentQuotesInMultiline.
# SupportedStyles: single_quotes, double_quotes
Style/StringLiterals:
AutoCorrect: true
EnforcedStyle: double_quotes
# This is the ugliest and most unreadable and not clear rule
# Don't use %i[] for symbol arrays, just make them [ :symbol ] for readability
Style/SymbolArray:
Enabled: false
# Don't always use %w[] to define arrays of words, as its not really nice
# reading for short two or three word arrays.
Style/WordArray:
Enabled: false
# Use StandardError when rescuing instead of the => e shortcut.
# I like the like shortcut though
Style/RescueStandardError:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Lint/MissingSuper:
Exclude:
- app/components/*
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: consistent_comma