forked from ManageIQ/manageiq-ui-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop_base.yml
97 lines (96 loc) · 2.03 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
Rails:
Enabled: true
Lint/DefEndAlignment:
AutoCorrect: true
Lint/EndAlignment:
AutoCorrect: true
Metrics/AbcSize:
Max: 20
Severity: refactor
Metrics/BlockNesting:
Severity: refactor
Metrics/ClassLength:
Severity: refactor
Metrics/CyclomaticComplexity:
Severity: refactor
Metrics/LineLength:
Max: 120
Severity: refactor
Metrics/MethodLength:
Max: 25
Severity: refactor
Metrics/ParameterLists:
Severity: refactor
Metrics/PerceivedComplexity:
Severity: refactor
Performance/Casecmp:
Enabled: false
Rails/FindEach:
Enabled: false
Rails/ReadWriteAttribute:
AutoCorrect: false
Style/AlignHash:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
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: false
Style/Encoding:
Enabled: false
Style/ExtraSpacing:
AutoCorrect: true
Style/FormatString:
EnforcedStyle: percent
Style/GuardClause:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/IfUnlessModifier:
Enabled: false
Style/NumericLiterals:
AutoCorrect: false
Style/PerlBackrefs:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Style/RedundantReturn:
AllowMultipleReturnValues: true
Style/RescueModifier:
AutoCorrect: false
Style/SignalException:
EnforcedStyle: only_raise
Style/SingleLineBlockParams:
Enabled: false
Style/SingleLineMethods:
AllowIfMethodIsEmpty: false
Style/SpaceBeforeFirstArg:
Enabled: false
Style/SpaceInsideHashLiteralBraces:
Enabled: false
Style/SpecialGlobalVars:
AutoCorrect: false
Style/StringLiterals:
Enabled: false
Style/StringLiteralsInInterpolation:
Enabled: false
Style/TrailingCommaInArguments:
Enabled: false
Style/TrailingCommaInLiteral:
Enabled: false
Style/TrivialAccessors:
AllowPredicates: true
Style/WhileUntilModifier:
Enabled: false
Style/WordArray:
AutoCorrect: false