-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
160 lines (159 loc) · 3.34 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
155
156
157
158
159
160
require:
- rubocop-performance
- rubocop-minitest
- rubocop-sequel
- rubocop-rake
AllCops:
AllowSymlinksInCacheRootDirectory: true
DisplayCopNames: true
Exclude:
- '**/._*'
- '**/.git/**/*'
- public/**/*
- config/**/*
- tmp/**/*
- '**/old/**/*'
Include:
- '**/*.rb'
- '**/Rakefile'
- '**/config.ru'
NewCops: enable
TargetRubyVersion: 3.3
Layout/ArgumentAlignment:
EnforcedStyle: with_fixed_indentation
Layout/ArrayAlignment:
EnforcedStyle: with_fixed_indentation
Layout/EmptyLineAfterGuardClause:
Enabled: false
Layout/EndOfLine:
EnforcedStyle: lf
Layout/FirstArgumentIndentation:
EnforcedStyle: consistent
Layout/FirstArrayElementIndentation:
EnforcedStyle: consistent
Layout/FirstHashElementIndentation:
EnforcedStyle: consistent
Layout/LineContinuationLeadingSpace:
EnforcedStyle: leading
Layout/LineEndStringConcatenationIndentation:
EnforcedStyle: indented
Layout/LineLength:
Exclude:
- test/*
Max: 100
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Layout/ParameterAlignment:
EnforcedStyle: with_fixed_indentation
Layout/SpaceBeforeBlockBraces:
EnforcedStyle: space
Layout/SpaceInsideBlockBraces:
EnforcedStyle: no_space
EnforcedStyleForEmptyBraces: no_space
SpaceBeforeBlockParameters: false
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Lint/AssignmentInCondition:
Enabled: false
Lint/UnusedMethodArgument:
Enabled: false
Metrics/AbcSize:
Exclude:
- test/*
Max: 30
Metrics/BlockLength:
Exclude:
- test/*
- '**/contract/*'
- '**/controller/*'
- app/task/**/*.rb
- '*.gemspec'
Metrics/ClassLength:
Exclude:
- test/*
- '**/contract/*'
- '**/controller/*'
- '**/service/*'
Max: 200
Metrics/CyclomaticComplexity:
Exclude:
- test/*
- '**/contract/*'
Max: 10
Metrics/MethodLength:
Exclude:
- test/*
Max: 20
Metrics/ModuleLength:
Exclude:
- test/*
- '**/contract/*'
- '**/controller/*'
- '**/service/*'
Max: 200
Metrics/PerceivedComplexity:
Exclude:
- test/*
- '**/contract/*'
Max: 10
Minitest/MultipleAssertions:
Enabled: false
Minitest/TestFileName:
Enabled: false
Naming/RescuedExceptionsVariableName:
PreferredName: e
Rake:
Exclude:
- '*'
Include:
- Rakefile
- '*.rake'
- app/task/**/*.rb
Sequel:
Exclude:
- '*'
Include:
- '**/model/**/*.rb'
- app/migration/**/*.rb
Sequel/ConcurrentIndex:
Enabled: false
Style/AsciiComments:
Enabled: false
Style/ConditionalAssignment:
Enabled: false
Style/Documentation:
Enabled: false
Style/EmptyMethod:
EnforcedStyle: expanded
Style/FormatString:
EnforcedStyle: percent
Style/FormatStringToken:
EnforcedStyle: template
Style/FrozenStringLiteralComment:
Enabled: false
Style/IdenticalConditionalBranches:
Exclude:
- test/*
Style/IfUnlessModifier:
Exclude:
- test/*
Style/RedundantReturn:
Enabled: false
Style/RescueModifier:
Enabled: false
Style/RescueStandardError:
Enabled: false
Style/StringLiterals:
EnforcedStyle: single_quotes
Style/SymbolArray:
EnforcedStyle: brackets
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma
Style/WordArray:
EnforcedStyle: brackets
Style/YodaCondition:
Enabled: false