-
Notifications
You must be signed in to change notification settings - Fork 63
/
.rubocop.yml
110 lines (76 loc) · 1.72 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
require:
- rubocop-rake
- rubocop-rspec
AllCops:
NewCops: enable
TargetRubyVersion: 3.0 # keep in sync with gemspec and actions.yml
Style/StringLiterals:
Enabled: false
Bundler/OrderedGems:
Enabled: false
Metrics:
Enabled: false
Style/Documentation:
Enabled: false
Layout/EmptyLineAfterMagicComment:
Enabled: false
Layout/EndAlignment:
EnforcedStyleAlignWith: variable
Layout/MultilineOperationIndentation:
Enabled: false
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Style/NumericPredicate:
EnforcedStyle: comparison
Layout/EmptyLineAfterGuardClause:
Enabled: false
Layout/FirstHashElementLineBreak:
Enabled: true # Opt-in
# Opt-in
Layout/FirstMethodArgumentLineBreak:
Enabled: true # Opt-in
Layout/FirstMethodParameterLineBreak:
Enabled: true # Opt-in
# https://github.com/rubocop-hq/rubocop/issues/5891
Style/SpecialGlobalVars:
Enabled: false
Style/WordArray:
EnforcedStyle: brackets
Style/SymbolArray:
EnforcedStyle: brackets
Style/GuardClause:
Enabled: false
Style/EmptyElse:
Enabled: false
RSpec/DescribedClass:
EnforcedStyle: explicit
Style/DoubleNegation:
Enabled: false
RSpec/VerifiedDoubles:
Enabled: false
RSpec/ExampleLength:
Enabled: false
Style/CombinableLoops:
Enabled: false
Lint/Void:
Enabled: false
Security/MarshalLoad:
Enabled: false
Lint/EmptyBlock:
Exclude: [spec/**/*.rb]
Naming/MethodParameterName:
Exclude: [spec/**/*.rb]
RSpec/BeforeAfterAll:
Enabled: false
# could change to `#method` and `.method` instead
RSpec/DescribeSymbol:
Enabled: false
RSpec/NestedGroups:
Enabled: false
RSpec/EmptyExampleGroup:
Enabled: false
Lint/SuppressedException:
Enabled: false
# somehow crashes
RSpec/VariableName:
Enabled: false