-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.rubocop_base.yml
211 lines (211 loc) · 4.04 KB
/
.rubocop_base.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
AllCops:
TargetRubyVersion: 2.3
Layout/AlignHash:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
Layout/ExtraSpacing:
AutoCorrect: true
Layout/SpaceBeforeFirstArg:
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
Enabled: true
Lint/DefEndAlignment:
AutoCorrect: true
Lint/EndAlignment:
AutoCorrect: true
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/BlockNesting:
Enabled: false
Metrics/ClassLength:
Enabled: true
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/LineLength:
Enabled: true
Metrics/MethodLength:
Enabled: true
Metrics/ModuleLength:
Enabled: false
Metrics/ParameterLists:
Enabled: true
Metrics/PerceivedComplexity:
Enabled: false
Performance/Casecmp:
Enabled: true
Rails:
Enabled: true
Rails/FindEach:
Enabled: false
Rails/ReadWriteAttribute:
AutoCorrect: false
Style/BracesAroundHashParameters:
EnforcedStyle: context_dependent
Style/ClassAndModuleChildren:
Enabled: false
Style/ClassCheck:
EnforcedStyle: kind_of?
Style/CollectionMethods:
PreferredMethods:
find: detect
find_all: select
map: collect
reduce: inject
Style/Documentation:
Enabled: true
Style/DoubleNegation:
Enabled: true
Style/EmptyMethod:
Enabled: true
Style/Encoding:
Enabled: false
Style/FormatString:
EnforcedStyle: percent
Style/FormatStringToken:
EnforcedStyle: template
Style/FrozenStringLiteralComment:
Enabled: false
Style/GuardClause:
Enabled: true
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/IfUnlessModifier:
Enabled: true
Style/MethodCallWithArgsParentheses:
Exclude:
- Gemfile
- spec/**/*
Enabled: true
IgnoredMethods:
# Ruby
- alias_method
- attr_accessor
- attr_reader
- attr_writer
- exit
- extend
- gem
- include
- load
- module_function
- pp
- prepend
- print
- private
- private_class_method
- private_constant
- puts
- raise
- require
- sleep
- throw
- yield
# Rails
- accepts_nested_attributes_for
- add_column
- add_index
- after_action
- after_commit
- after_create
- after_create_commit
- after_destroy
- after_destroy
- after_destroy_commit
- after_initialize
- after_save
- after_save
- after_update
- after_update_commit
- alias_attribute
- around_destroy
- autoload
- before_action
- before_create
- before_destroy
- before_save
- before_update
- before_validation
- belongs_to
- bigint
- boolean
- cattr_accessor
- cattr_reader
- cattr_writer
- change_column
- class_attribute
- create_table
- datetime
- decimal
- delegate
- drop_table
- has_and_belongs_to_many
- has_many
- has_one
- head
- identified_by
- integer
- mattr_accessor
- remove_column
- remove_index
- rename_column
- render
- require_dependency
- require_relative
- respond_to
- scope
- serialize
- skip_before_action
- string
- text
- validate
- validates
# Rake
- desc
- task
Style/NumericLiterals:
AutoCorrect: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%i': ()
'%I': ()
'%w': ()
'%W': ()
Style/PerlBackrefs:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Style/RedundantReturn:
AllowMultipleReturnValues: true
Style/RegexpLiteral:
Enabled: false
Style/RescueModifier:
AutoCorrect: false
Style/SignalException:
EnforcedStyle: only_raise
Style/SingleLineBlockParams:
Enabled: false
Style/SingleLineMethods:
AllowIfMethodIsEmpty: false
Style/GlobalVars:
AllowedVariables:
- $lxca_log
Style/SpecialGlobalVars:
AutoCorrect: false
Style/StringLiterals:
Enabled: true
Style/StringLiteralsInInterpolation:
Enabled: true
Style/TrailingCommaInArguments:
Enabled: false
Style/TrailingCommaInLiteral:
Enabled: false
Style/TrailingUnderscoreVariable:
Enabled: false
Style/TrivialAccessors:
AllowPredicates: true
Style/WhileUntilModifier:
Enabled: true
Style/WordArray:
AutoCorrect: true