-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
51 lines (42 loc) · 1.04 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
inherit_gem:
rubocul: rubocul_default.yml
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 3.2.2
TargetRailsVersion: 7.1
DisplayCopNames: true
Exclude:
- 'bin/**/*'
- 'db/**/*'
- 'app/javascript/**/*'
- 'config/environments/**/*'
- 'node_modules/**/*'
- 'vendor/**/*'
- 'lib/tasks/**/*'
- 'tmp/**/*'
Layout/LineLength:
Exclude:
- lib/atc/aip_reader.rb
- spec/atc/aip_reader_spec.rb
Metrics/AbcSize:
Exclude:
- lib/atc/aip_reader.rb
Metrics/ClassLength:
Exclude:
- 'lib/atc/aws/remote_fixity_check.rb'
Metrics/MethodLength:
Exclude:
- lib/atc/aip_reader.rb
- lib/atc/directory_reader.rb
- lib/atc/loaders/checksum_loader.rb
- lib/atc/utils/aws_multipart_checksum_utils.rb
- lib/atc/aws/s3_uploader.rb
- lib/atc/utils/aws_checksum_utils.rb
- lib/atc/gcp/storage_uploader.rb
Rails/Output:
Exclude:
- 'lib/atc/aws/s3_uploader.rb'
- 'lib/atc/aip_reader.rb'
- 'lib/atc/directory_reader.rb'
Lint/MissingCopEnableDirective:
Enabled: false