-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
98 lines (76 loc) · 1.99 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
inherit_gem:
bixby: bixby_default.yml
AllCops:
NewCops: disable
TargetRubyVersion: 3.2.2
DisplayCopNames: true
Exclude:
# NOTE: When we run knapsack's rubocop, we don't want to check the submodule
# for Hyku. We'll assume it's okay and has it's own policing policies.
- "hyrax-webapp/**/*"
- "gems/**/*"
- "spec/hyku_specs/**/*"
- 'bin/**/*'
- 'db/**/*'
- 'config/**/*'
- 'vendor/**/*'
- 'lib/tasks/rubocop.rake'
Layout/HashAlignment:
Exclude:
- app/forms/hyrax/forms/admin/adl_appearance_decorator.rb
Metrics/BlockLength:
AllowedMethods: ['included', 'describe', 'it', 'context']
Exclude:
- "spec/**/*.rb"
- app/controllers/catalog_controller_decorator.rb
Metrics/ModuleLength:
Exclude:
- lib/dog_biscuits.rb
- app/models/solr_document_decorator.rb
Style/AsciiComments:
Enabled: false
# rubocop suggests !thing.nil? instead, but that is NOT equivalent
Style/DoubleNegation:
Enabled: false
Style/CollectionMethods:
PreferredMethods:
collect: 'map'
collect!: 'map!'
inject: 'reduce'
detect: 'find'
find_all: 'select'
Style/SymbolArray:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/SingleLineBlockParams:
Enabled: false
Rails/ApplicationJob:
Enabled: false
Rails/ApplicationMailer:
Enabled: false
Rails/ApplicationRecord:
Enabled: false
Rails/RakeEnvironment:
Enabled: false
# We define custom methods like `find_by_user_key`,
# `find_by_created_date`, etc
Rails/DynamicFindBy:
Enabled: false
# # By default RSpec/MessageSpies has the following:
# # Prefer have_received for setting message expectations. Setup form as a spy using allow or instance_spy.
# # The default assumes EnforcedStyle is 'have_received'. Most of our specs are 'receive'
RSpec/MessageSpies:
Enabled: false
RSpec/ExpectActual:
Enabled: false
RSpec/LetSetup:
Enabled: false
RSpec/MessageExpectation:
Enabled: false
RSpec/NestedGroups:
Enabled: false
RSpec/LeadingSubject:
Enabled: false
RSpec/ExampleLength:
Max: 16