-
Notifications
You must be signed in to change notification settings - Fork 928
/
.rubocop.yml
112 lines (81 loc) · 1.86 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
inherit_from: .rubocop_todo.yml
# Do not attempt to police vendored code
AllCops:
NewCops: enable
TargetRubyVersion: 3.1
Exclude:
- 'vendor/**/*'
Gemspec/DevelopmentDependencies:
EnforcedStyle: gemspec
Style/StringLiterals:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Layout/LineLength:
Enabled: false
# We do not enforce the cop in the models as it would not work with the
# DSL style of the models
Lint/AmbiguousRegexpLiteral:
Enabled: true
Exclude:
- lib/oxidized/model/*.rb
Lint/RaiseException:
Enabled: true
Lint/StructNewOverride:
Enabled: true
# Stick to verbose until https://bugs.ruby-lang.org/issues/10177 is closed.
Style/PreferredHashMethods:
EnforcedStyle: verbose
Layout/HashAlignment:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
Style/Not:
Enabled: false
# comply with @ytti's exacting specifications
Style/CommandLiteral:
EnforcedStyle: percent_x
Style/FormatString:
EnforcedStyle: percent
Style/FormatStringToken:
EnforcedStyle: unannotated
Style/HashEachMethods:
Enabled: true
Style/HashSyntax:
EnforcedShorthandSyntax: either
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/RegexpLiteral:
EnforcedStyle: slashes
AllowInnerSlashes: true
Style/RescueModifier:
Enabled: false
Style/SymbolProc:
Enabled: false
Style/Documentation:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Metrics/MethodLength:
Max: 50
Metrics/AbcSize:
Max: 28
Metrics/ClassLength:
Max: 200
## Metrics/CyclomaticComplexity:
## Max: 7
# The BlockLength metric does not apply to unit tests. They are in nature
# long and not very pretty
Metrics/BlockLength:
Max: 150
Exclude:
- spec/**/*_spec.rb
Metrics/ParameterLists:
Max: 6
Lint/EmptyBlock:
Enabled: false
require:
- rubocop-rake
- rubocop-minitest
- rubocop-sequel