-
Notifications
You must be signed in to change notification settings - Fork 153
/
.rubocop.yml
89 lines (71 loc) · 1.42 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
inherit_from: .rubocop_todo.yml
AllCops:
Exclude:
- vendor/**/*
- example/**/*
NewCops: enable
TargetRubyVersion: 3.0
SuggestExtensions: false
# Layout stuff
#
Layout/EmptyLinesAroundArguments:
Enabled: false
Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true
Layout/FirstHashElementIndentation:
EnforcedStyle: consistent
Layout/LineLength:
Max: 120
Exclude:
- spec/**/*
Layout/SpaceAroundMethodCallOperator:
Enabled: true
# Lint stuff
#
Lint/ConstantDefinitionInBlock:
Enabled: true
Exclude:
- spec/**/*
# Metrics stuff
#
Metrics/AbcSize:
Max: 25
AllowedMethods:
# from lib/grape_entity/exposure/nesting_exposure.rb
- 'normalized_exposures'
Metrics/BlockLength:
Exclude:
- spec/**/*
Metrics/CyclomaticComplexity:
Max: 13
Metrics/ClassLength:
Max: 300
Metrics/MethodLength:
Max: 26
Exclude:
- spec/**/*
Metrics/PerceivedComplexity:
Max: 11
AllowedMethods:
# from lib/grape_entity/entity.rb
- 'expose'
- 'merge_options'
# from lib/grape_entity/exposure/nesting_exposure.rb
- 'normalized_exposures'
# Naming stuff
#
Naming:
Enabled: false
# Style stuff
#
Style/Documentation:
Enabled: false
Style/HashSyntax:
Enabled: false
Style/OptionalBooleanParameter:
AllowedMethods:
# from lib/grape_entity/condition/base.rb
- 'initialize'
# form lib/grape_entity/entity.rb
- 'entity_class'
- 'present_collection'