-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
154 lines (107 loc) Β· 2.3 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
# TODO: Extract to another repository for use of inheritance
AllCops:
TargetRubyVersion: 3.3
DisplayCopNames: true
DisabledByDefault: true
Exclude:
- 'dependencies'
- '.direnv'
- 'result'
- 'dist'
NewCops: disable
Security:
Enabled: true
Style/HashSyntax:
Enabled: true
Style/TrailingMethodEndStatement:
Enabled: true
Style/MethodDefParentheses:
Enabled: true
Style/TrailingCommaInBlockArgs:
Enabled: true
Style/StringLiterals:
Enabled: true
EnforcedStyle: 'single_quotes'
Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: 'single_quotes'
Style/TopLevelMethodDefinition:
Enabled: true
Style/InPatternThen:
Enabled: true
Style/HashEachMethods:
Enabled: true
Style/QuotedSymbols:
Enabled: true
EnforcedStyle: 'single_quotes'
Style/MultilineInPatternThen:
Enabled: true
Layout:
Enabled: true
Layout/TrailingEmptyLines:
Enabled: true
Layout/TrailingWhitespace:
Enabled: true
Layout/SpaceBeforeFirstArg:
Enabled: true
Layout/SpaceBeforeSemicolon:
Enabled: true
Layout/SpaceInsideArrayPercentLiteral:
Enabled: true
Layout/SpaceInsideBlockBraces:
Enabled: true
Layout/SpaceInsideParens:
Enabled: true
Layout/SpaceInsidePercentLiteralDelimiters:
Enabled: true
Layout/SpaceInsideRangeLiteral:
Enabled: true
Layout/SpaceInsideReferenceBrackets:
Enabled: true
Layout/SpaceInsideStringInterpolation:
Enabled: true
Layout/SpaceAroundMethodCallOperator:
Enabled: true
Layout/SpaceAroundKeyword:
Enabled: true
Layout/ArgumentAlignment:
Enabled: true
Layout/CaseIndentation:
Enabled: true
Layout/SpaceInLambdaLiteral:
Enabled: true
EnforcedStyle: require_space
Layout/SpaceBeforeBlockBraces:
Enabled: true
Naming/MethodName:
Enabled: true
Naming/FileName:
Enabled: true
Naming/ConstantName:
Enabled: true
Naming/ClassAndModuleCamelCase:
Enabled: true
Naming/BlockParameterName:
Enabled: true
Naming/HeredocDelimiterCase:
Enabled: true
Bundler:
Enabled: true
Bundler/OrderedGems:
Enabled: false
Gemspec:
Enabled: true
Gemspec/OrderedDependencies:
Enabled: false
Lint:
Enabled: true
Lint/InheritException:
Enabled: false
Lint/RedundantStringCoercion:
Enabled: false
Lint/UnusedMethodArgument:
Enabled: false
Lint/AssignmentInCondition:
Enabled: false
Lint/RescueException:
Enabled: false