-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
57 lines (45 loc) · 1.09 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
inherit_from: .rubocop_todo.yml
inherit_gem:
bixby: bixby_default.yml
AllCops:
TargetRubyVersion: 3.2
NewCops: enable
SuggestExtensions: false
Rails/I18nLocaleTexts:
Enabled: false
Layout/LineLength:
Enabled: true
Max: 200
Exclude:
- 'spec/support/stub_aspace_client.rb'
- 'spec/support/stub_aspace.rb'
Metrics/AbcSize:
Exclude:
- 'app/models/peoplesoft_voucher/alma_xml_invoice.rb'
Metrics/BlockLength:
Exclude:
- 'config/routes.rb'
- 'db/schema.rb'
- 'lib/tasks/lib_jobs.rake'
- 'spec/**/*'
Metrics/ClassLength:
Exclude:
- 'app/models/staff_directory_generator.rb'
- 'app/models/aspace_svn/get_eads_job.rb'
Metrics/CyclomaticComplexity:
Exclude:
- 'app/models/ability.rb'
- 'app/models/web_staff/ldap.rb'
Metrics/MethodLength:
Exclude:
- 'app/controllers/application_controller.rb'
- 'app/models/aspace_svn/get_eads_job.rb'
Metrics/PerceivedComplexity:
Exclude:
- 'app/models/ability.rb'
- 'app/models/web_staff/ldap.rb'
RSpec/ExampleLength:
Max: 100
RSpec/DescribeClass:
Exclude:
- 'spec/system/**/*'