forked from dball/data_uri
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.rubocop.yml
72 lines (57 loc) · 966 Bytes
/
.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
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 3.2
Exclude:
- 'Gemfile'
- 'data_uri.gemspec'
UseCache: true
SuggestExtensions: false
NewCops: enable
#
# *** Layout
#
Layout/LineLength:
Max: 120
Layout/SpaceBeforeBlockBraces:
EnforcedStyle: space
EnforcedStyleForEmptyBraces: space
#
# *** Metrics
#
Metrics/AbcSize:
Max: 37
Metrics/BlockLength:
Max: 35
Exclude:
- 'test/**/*'
Metrics/ClassLength:
Max: 200
Exclude:
- 'test/**/*'
Metrics/CyclomaticComplexity:
Max: 13
Metrics/MethodLength:
Max: 30
Metrics/ModuleLength:
Max: 150
Metrics/ParameterLists:
Max: 4
Metrics/PerceivedComplexity:
Max: 13
#
# *** Naming
#
Naming/VariableNumber:
EnforcedStyle: snake_case
AllowedIdentifiers: [base64]
Naming/MethodParameterName:
Enabled: false
#
# *** Style
#
Style/AsciiComments:
Enabled: false
Style/ClassAndModuleChildren:
EnforcedStyle: nested
Style/Documentation:
Enabled: false