-
-
Notifications
You must be signed in to change notification settings - Fork 130
/
.rubocop.yml
114 lines (114 loc) · 2.35 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
# Opt-in new cops
AllCops:
NewCops: enable
#
# Overrides
#
Layout/HashAlignment:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
Layout/LineLength:
Max: 120
Severity: refactor
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Lint/Debugger:
Enabled: true
Metrics/AbcSize:
Severity: refactor
# Exclude test methods from BlockLength.
Metrics/BlockLength:
IgnoredMethods:
- after
- before
- context
- describe
- it
- model_tests
- namespace
- draw
Metrics/BlockNesting:
Severity: refactor
Metrics/ClassLength:
Max: 150
Severity: refactor
Metrics/CyclomaticComplexity:
Severity: refactor
Metrics/MethodLength:
Max: 25
Severity: refactor
Metrics/ParameterLists:
Severity: refactor
Metrics/PerceivedComplexity:
Severity: refactor
Style/ClassCheck:
EnforcedStyle: kind_of?
Style/CollectionMethods:
PreferredMethods:
find: detect
find_all: select
map: collect
reduce: inject
Style/FormatString:
EnforcedStyle: percent
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/RedundantReturn:
AllowMultipleReturnValues: true
Style/RegexpLiteral:
EnforcedStyle: slashes
AllowInnerSlashes: true
Style/SignalException:
EnforcedStyle: only_raise
Style/SingleLineMethods:
AllowIfMethodIsEmpty: false
Style/TrivialAccessors:
AllowPredicates: true
#
# Enabled/Disabled
#
Layout/DefEndAlignment:
AutoCorrect: true
Layout/EndAlignment:
AutoCorrect: true
Layout/ExtraSpacing:
AutoCorrect: false # https://github.com/bbatsov/rubocop/issues/2280 <= Now closed, we should remove this
Layout/SpaceBeforeFirstArg:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/Documentation:
Enabled: false
Style/Encoding:
Enabled: false
Style/GuardClause:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/NumericLiterals:
AutoCorrect: false
MinDigits: 7
Style/ParallelAssignment:
Enabled: false
Style/PerlBackrefs:
Enabled: false
Style/RescueModifier:
AutoCorrect: false
Style/SingleLineBlockParams:
Enabled: false
Style/SpecialGlobalVars:
AutoCorrect: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/StringLiteralsInInterpolation:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/WhileUntilModifier:
Enabled: false
Style/WordArray:
AutoCorrect: false