-
Notifications
You must be signed in to change notification settings - Fork 25
/
.rubocop_todo.yml
62 lines (49 loc) · 1.41 KB
/
.rubocop_todo.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
# List of files that we ought to fix based on what Rubocop is complaining about them
Layout/SpaceBeforeBlockBraces:
Exclude:
- lib/hydra/derivatives/processors/jpeg2k_image.rb
- lib/hydra/derivatives/processors/shell_based_processor.rb
Metrics/ClassLength:
Exclude:
- lib/hydra/derivatives/processors/jpeg2k_image.rb
Metrics/CyclomaticComplexity:
Exclude:
- spec/units/transcoding_spec.rb
Metrics/MethodLength:
Exclude:
- lib/hydra/derivatives/config.rb
- lib/hydra/derivatives/processors/document.rb
- lib/hydra/derivatives/processors/jpeg2k_image.rb
- lib/hydra/derivatives/processors/shell_based_processor.rb
- lib/hydra/derivatives/processors/video/processor.rb
- lib/hydra/derivatives/services/tempfile_service.rb
- spec/**/*.rb
Naming/PredicateName:
Exclude:
- spec/services/tempfile_service_spec.rb
RSpec/AnyInstance:
Exclude:
- spec/processors/image_spec.rb
- spec/units/transcoding_spec.rb
RSpec/BeforeAfterAll:
Exclude:
- spec/**/*.rb
RSpec/DescribeClass:
Exclude:
- spec/units/config_spec.rb
- spec/units/transcoding_spec.rb
RSpec/PredicateMatcher:
Exclude:
- spec/**/*.rb
RSpec/ReturnFromStub:
Exclude:
- spec/processors/jpeg2k_spec.rb
RSpec/SubjectStub:
Exclude:
- spec/**/*.rb
RSpec/VerifiedDoubles:
Exclude:
- spec/processors/full_text_spec.rb
Style/EvalWithLocation:
Exclude:
- lib/hydra/derivatives.rb