forked from Katello/katello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
169 lines (124 loc) · 3.29 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
require:
- rubocop-performance
- rubocop-rails
- rubocop-minitest
# TODO: Remove the following once the rules in the file is addressed
inherit_from:
- .rubocop_todo.yml
# end TODO
Rails:
Enabled: true
AllCops:
Exclude:
- db/migrate/20131014135042_katello_tables.rb
- engines/*/node_modules/**/*
- engines/bastion_katello/bastion-*/**/*
- engines/bastion_katello/vendor/assets/dev-components/**/*
- engines/bastion_katello/Rakefile
- foreman/**/*
- node_modules/**/*
- Gemfile
Include:
- '**/*.rb'
- app/views/**/*.rabl
- '**/*.rake'
TargetRubyVersion: 2.5
Metrics/MethodLength:
Description: 'Avoid methods longer than 30 lines of code.'
Max: 30 # default is 10
CountAsOne:
- array
- hash
- heredoc
Style/HashSyntax:
Enabled: false # don't force 1.9 hash syntax
Rails/DynamicFindBy:
Enabled: False
Whitelist:
- find_by_cp_id
- find_by_katello_id
- find_by_unit_id
- find_by_version
Layout/SpaceInsideHashLiteralBraces:
Enabled: false # allow spaces (eg { :a => 1 })
Layout/LeadingCommentSpace:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/RescueModifier:
Enabled: false
Style/WhileUntilModifier:
Enabled: false
Layout/ParameterAlignment:
Enabled: false # don't care if parameters are not aligned
Layout/HashAlignment:
EnforcedLastArgumentHashStyle: ignore_implicit # ignore argument hashes
Style/ParenthesesAroundCondition:
Enabled: false
Layout/DotPosition:
Enabled: false
Style/Lambda:
Enabled: false # don't require -> for single line lambdas
Style/RedundantSelf:
Enabled: false
Style/RedundantReturn:
Enabled: false
Style/Documentation:
Enabled: false # don't require documentation
Style/Encoding:
Enabled: false # don't require utf-8 encoding on every file
Style/MethodCalledOnDoEndBlock:
Enabled: true
Style/SingleLineBlockParams:
Enabled: false
Metrics/ClassLength:
Exclude:
- 'test/models/content_view_test.rb'
- 'test/controllers/api/v2/repositories_controller_test.rb'
Style/Next:
Enabled: false # don't enforce next in loops over if/unless
Style/FormatString:
Enabled: false # we use % for i18n
Style/GuardClause:
Enabled: false # don't enforce this
Style/ClassVars:
Enabled: True
Exclude: ['test/**/*']
Style/StringLiterals:
Enabled: false # dont't enforce
Style/WordArray:
Enabled: false # don't force usage of %w()
Naming/FileName:
Exclude: ['script/**', 'db/seeds.d/**'] # scripts are hyphened case
Rails/ScopeArgs:
Enabled: false # don't force usage of lambdas for scopes
Style/EachWithObject:
Enabled: false # people can use inject
Style/SymbolProc:
Enabled: false # don't force usage of symbol procs
Style/SignalException:
EnforcedStyle: semantic
# Don't enforce frozen string literals
Style/FrozenStringLiteralComment:
Enabled: false
Gemspec/OrderedDependencies:
Enabled: false
Style/CommentedKeyword:
Enabled: false
Style/RescueStandardError:
Enabled: false
# we use booleans as symbols for scoped search
Lint/BooleanSymbol:
Enabled: false
Lint/UriEscapeUnescape:
Enabled: false
Performance/RegexpMatch:
Enabled: false
Minitest/GlobalExpectations:
Enabled: true
Performance/CollectionLiteralInLoop:
Enabled: false
Rails/RedundantForeignKey:
Enabled: true
Rails/UniqueValidationWithoutIndex:
Enabled: true