-
Notifications
You must be signed in to change notification settings - Fork 7
/
.rubocop-common.yml
117 lines (117 loc) · 2.42 KB
/
.rubocop-common.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
AllCops:
NewCops: disable
SuggestExtensions: false
TargetRubyVersion: 2.4
Gemspec/DateAssignment:
Enabled: true
Layout/EmptyLineAfterGuardClause:
Enabled: false
Layout/HashAlignment:
Enabled: false
Layout/LineLength:
Max: 120
Layout/SpaceBeforeBrackets:
Enabled: true
Layout/SpaceInsideHashLiteralBraces:
Enabled: false
Lint/AmbiguousAssignment:
Enabled: true
Lint/DeprecatedConstants:
Enabled: true
Lint/DuplicateBranch:
Enabled: true
Lint/DuplicateRegexpCharacterClassElement:
Enabled: true
Lint/EmptyBlock:
Enabled: true
Lint/EmptyClass:
AllowComments: true
Enabled: true
Lint/LambdaWithoutLiteralBlock:
Enabled: true
Lint/NoReturnInBeginEndBlocks:
Enabled: true
Lint/NumberedParameterAssignment:
Enabled: true
Lint/OrAssignmentToConstant:
Enabled: true
Lint/RedundantDirGlobSort:
Enabled: true
Lint/SymbolConversion:
Enabled: true
Lint/ToEnumArguments:
Enabled: true
Lint/TripleQuotes:
Enabled: true
Lint/UnexpectedBlockArity:
Enabled: true
Lint/UnmodifiedReduceAccumulator:
Enabled: true
Metrics/AbcSize:
Max: 30
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Max: 12
Metrics/MethodLength:
Max: 25
Metrics/ModuleLength:
Enabled: false
Metrics/ParameterLists:
Enabled: false
Metrics/PerceivedComplexity:
Max: 12
Style/AccessorGrouping:
Enabled: false
Style/ArgumentsForwarding:
Enabled: true
Style/BisectedAttrAccessor:
Enabled: false
Style/CaseEquality:
Enabled: false
Style/CollectionCompact:
Enabled: true
Style/DocumentDynamicEvalDefinition:
Enabled: true
Style/DocumentationMethod:
Enabled: true
Style/EndlessMethod:
Enabled: true
Style/GuardClause:
Enabled: false
Style/HashConversion:
Enabled: true
Style/HashExcept:
Enabled: true
Style/IfUnlessModifier:
Enabled: false
Style/IfWithBooleanLiteralBranches:
Enabled: true
Style/NegatedIfElseCondition:
Enabled: true
Style/Next:
Enabled: false
Style/NilLambda:
Enabled: true
Style/OptionalBooleanParameter:
Enabled: false
Style/RedundantArgument:
Enabled: true
Style/SoleNestedConditional:
Enabled: false
Style/StringChars:
Enabled: true
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/SwapValues:
Enabled: true
Style/SymbolArray:
EnforcedStyle: brackets
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma
Style/WhileUntilModifier:
Enabled: false
Style/WordArray:
EnforcedStyle: brackets