-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
82 lines (82 loc) · 1.76 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
require: rubocop-rails
Lint/MissingSuper:
Exclude:
- 'app/services/**/*'
# BL Code
- 'app/components/blacklight/**/*'
Metrics/ClassLength:
Max: 120
Metrics/AbcSize:
Max: 20
Exclude:
- 'app/decorators/*'
- 'app/lib/mods_decoration.rb'
- 'app/services/**/*'
# Constrained by gem expectations
- 'app/models/breadcrumb_trail.rb'
# Nature of object conversion, lots of assignment
- 'app/lib/mods_to_json.rb'
Metrics/CyclomaticComplexity:
Exclude:
- 'app/decorators/*'
Metrics/PerceivedComplexity:
Exclude:
- 'app/decorators/*'
Style/OpenStructUse:
Enabled: false
Lint/AmbiguousBlockAssociation:
Enabled: false
Rails/FindEach:
Enabled: false
Rails/I18nLocaleTexts:
Enabled: false
Style/Documentation:
Enabled: false
Layout/LineLength:
Max: 120
Include:
- 'app/**/*'
Metrics/MethodLength:
Max: 15
AllowedMethods: ['role_permissions', 'convert_xml_to_json']
AllCops:
NewCops: enable
TargetRubyVersion: 2.5
Exclude:
- 'node_modules/**/*'
- 'vendor/**/*'
- 'db/**/*'
- 'bin/**/*'
- 'config/**/*'
- 'app/lib/mods_builder.rb'
Metrics/BlockLength:
Exclude:
# BL config too long
- 'app/controllers/catalog_controller.rb'
- 'spec/**/*'
- 'lib/tasks/*'
Rails/UnknownEnv:
Environments:
- production
- development
- test
- staging
Rails/DynamicFindBy:
Whitelist:
- find_by_alternate_identifier
Layout/IndentationConsistency:
EnforcedStyle: indented_internal_methods
Style/MissingRespondToMissing:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Naming/VariableNumber:
Enabled: false
Lint/EmptyBlock:
Enabled: false
Lint/ConstantDefinitionInBlock:
Enabled: false