forked from imgproxy/imgproxy.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
101 lines (76 loc) · 1.75 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
require: rubocop-rspec
AllCops:
TargetRubyVersion: 2.5
Exclude:
- 'spec/dummy/**/*'
- 'vendor/**/*'
- 'tmp/**/*'
Gemspec/RequiredRubyVersion:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/NumericLiterals:
Enabled: false
Style/Alias:
Enabled: false # `alias_method` and `alias` have diferent behaviour
Style/FrozenStringLiteralComment:
Enabled: false # not to be used before migration to Ruby 3+
Style/DoubleNegation:
Enabled: false
Layout/LineLength:
Max: 100
Metrics/BlockLength:
Exclude:
- spec/**/*
Style/TrailingCommaInArguments:
Enabled: true
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
Enabled: true
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArrayLiteral:
Enabled: true
EnforcedStyleForMultiline: comma
Layout/EmptyLineAfterGuardClause:
Enabled: false
Naming/FileName:
Exclude:
- "*file" # Rakefile, etc
Layout/HashAlignment:
Enabled: false
Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true
Layout/SpaceAroundMethodCallOperator:
Enabled: true
Lint/RaiseException:
Enabled: true
Lint/StructNewOverride:
Enabled: true
Style/ExponentialNotation:
Enabled: true
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/SlicingWithRange:
Enabled: true
RSpec/FilePath:
Enabled: false
RSpec/LeadingSubject:
Enabled: false
RSpec/NamedSubject:
Enabled: false
RSpec/NestedGroups:
Max: 3
RSpec/SubjectStub:
Enabled: false # Need this ime by time
RSpec/MultipleExpectations:
Max: 5
RSpec/ExampleLength:
Max: 10
RSpec/EmptyLineAfterFinalLet:
Enabled: false # This works wrong somatimes
RSpec/BeforeAfterAll:
Enabled: false # Not suitable here