forked from Katello/katello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
107 lines (75 loc) · 2.18 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
# TODO: Remove the following once the rules in the file is addressed
inherit_from:
- .rubocop_todo.yml
# end TODO
AllCops:
RunRailsCops: true # automatically run rails cops
Exclude:
- db/migrate/20131014135042_katello_tables.rb
- engines/bastion_katello/node_modules/**/*
- engines/bastion_katello/vendor/assets/dev-components/**/*
Include:
- app/views/**/*.rabl
MethodLength:
Description: 'Avoid methods longer than 30 lines of code.'
Max: 30 # default is 10
SpaceInsideHashLiteralBraces:
EnforcedStyleIsWithSpaces: false
HashSyntax:
Enabled: false # don't force 1.9 hash syntax
SpaceInsideHashLiteralBraces:
Enabled: false # allow spaces (eg { :a => 1 })
LeadingCommentSpace:
Enabled: false
IfUnlessModifier:
Enabled: false
RescueModifier:
Enabled: false
AssignmentInCondition:
Enabled: false
WhileUntilModifier:
Enabled: false
AlignParameters:
Enabled: false # don't care if parameters are not aligned
AlignHash:
EnforcedLastArgumentHashStyle: ignore_implicit # ignore argument hashes
ParenthesesAroundCondition:
Enabled: false
DotPosition:
Enabled: false
Lambda:
Enabled: false # don't require -> for single line lambdas
RedundantSelf:
Enabled: false
RedundantReturn:
Enabled: false
SpaceInsideHashLiteralBraces:
Enabled: false # we allow spaces inside hash brackets
Documentation:
Enabled: false # don't require documentation
Encoding:
Enabled: false # don't require utf-8 encoding on every file
MethodCalledOnDoEndBlock:
Enabled: true
SingleLineBlockParams:
Enabled: false
Style/Next:
Enabled: false # don't enforce next in loops over if/unless
Rails/ActionFilter:
Enabled: false # Rails 4.0 check
FormatString:
Enabled: false # we use % for i18n
Style/GuardClause:
Enabled: false # don't enforce this
Style/StringLiterals:
Enabled: false # dont't enforce
Style/WordArray:
Enabled: false # don't force usage of %w()
Style/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