-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.rubocop_todo.yml
More file actions
executable file
·99 lines (82 loc) · 2.34 KB
/
Copy path.rubocop_todo.yml
File metadata and controls
executable file
·99 lines (82 loc) · 2.34 KB
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
require: rubocop-rspec
Bundler/OrderedGems:
Exclude:
- 'Gemfile'
Metrics/ClassLength:
Exclude:
- 'app/controllers/catalog_controller.rb'
- 'lib/import/tabular_importer.rb'
- 'app/forms/hyrax/forms/work_form.rb'
- 'app/models/user.rb'
Metrics/MethodLength:
Exclude:
- 'app/controllers/catalog_controller.rb'
- 'app/jobs/ingest_work_job.rb'
- 'lib/import/tabular_importer.rb'
- 'app/renderers/member_attribute_renderer.rb'
- 'spec/support/factory_helpers.rb'
Metrics/BlockLength:
Exclude:
- 'app/controllers/catalog_controller.rb'
- 'app/models/concerns/nested_attributes.rb'
- 'lib/import/tabular_importer.rb'
- 'spec/spec_helper.rb'
- 'spec/**/*'
Metrics/LineLength:
Exclude:
- 'app/controllers/catalog_controller.rb'
- 'spec/factories/permission_templates.rb'
- 'app/controllers/users/sessions_controller.rb'
- 'app/models/user.rb'
- 'app/models/concerns/hyrax/user.rb'
Metrics/ParameterLists:
Exclude:
- 'app/jobs/batch_import_job.rb'
- 'lib/import/tabular_importer.rb'
Metrics/AbcSize:
Exclude:
- 'app/jobs/batch_import_job.rb'
- 'app/jobs/ingest_work_job.rb'
- 'lib/import/tabular_importer.rb'
- 'spec/support/features/stub_view_helpers.rb'
- 'app/controllers/users/omniauth_callbacks_controller.rb'
Metrics/CyclomaticComplexity:
Exclude:
- 'app/jobs/batch_import_job.rb'
- 'app/jobs/ingest_work_job.rb'
- 'lib/import/tabular_importer.rb'
- 'app/renderers/member_attribute_renderer.rb'
Metrics/PerceivedComplexity:
Exclude:
- 'app/jobs/batch_import_job.rb'
- 'app/jobs/ingest_work_job.rb'
- 'lib/import/tabular_importer.rb'
- 'app/renderers/member_attribute_renderer.rb'
Style/OptionalArguments:
Exclude:
- 'app/models/concerns/stored_inline.rb'
Rails/OutputSafety:
Exclude:
- 'app/renderers/member_attribute_renderer.rb'
RSpec/InstanceVariable:
Exclude:
- 'spec/hyrax/**/*'
- 'spec/models/**/*'
- 'spec/controllers/**/*'
- 'spec/features/**/*'
- 'spec/services/**/*'
RSpec/NamedSubject:
Enabled: false
RSpec/ExampleLength:
Max: 9
Exclude:
- 'spec/features/**/*'
- 'spec/views/**/*'
- 'spec/models/**/*'
- 'spec/jobs/**/*'
- 'spec/import/**/*'
RSpec/VerifiedDoubles:
Enabled: false
Security/MarshalLoad:
Exclude:
- 'app/models/concerns/hyrax/user.rb'