-
Notifications
You must be signed in to change notification settings - Fork 8
/
.rubocop_todo.yml
76 lines (60 loc) · 1.81 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Bundler/DuplicatedGem:
Enabled: false
Metrics/AbcSize:
Exclude:
- 'lib/active_encode/engine_adapters/*'
Metrics/BlockLength:
Exclude:
- 'lib/active_encode/spec/shared_specs/*'
- 'spec/**/*'
Metrics/BlockNesting:
Exclude:
- 'lib/file_locator.rb'
Metrics/ClassLength:
Exclude:
- 'lib/active_encode/engine_adapters/*'
Metrics/ModuleLength:
Exclude:
- 'lib/active_encode/engine_adapters/*'
Metrics/CyclomaticComplexity:
Exclude:
- 'lib/active_encode/engine_adapters/elastic_transcoder_adapter.rb'
- 'lib/active_encode/engine_adapters/ffmpeg_adapter.rb'
- 'lib/active_encode/engine_adapters/zencoder_adapter.rb'
- 'lib/active_encode/engine_adapters/media_convert_adapter.rb'
Layout/LineLength:
Exclude:
- 'lib/active_encode/engine_adapters/matterhorn_adapter.rb'
- 'spec/**/*'
Metrics/MethodLength:
Exclude:
- 'lib/active_encode/engine_adapters/*'
- 'lib/active_encode/engine_adapters/ffmpeg_adapter/*'
- 'lib/file_locator.rb'
Metrics/PerceivedComplexity:
Exclude:
- 'lib/active_encode/engine_adapters/ffmpeg_adapter.rb'
- 'lib/active_encode/engine_adapters/media_convert_adapter.rb'
- 'lib/file_locator.rb'
RSpec/AnyInstance:
Exclude:
- 'spec/integration/ffmpeg_adapter_spec.rb'
- 'spec/integration/pass_through_adapter_spec.rb'
RSpec/ExampleLength:
Enabled: false
RSpec/InstanceVariable:
Exclude:
- 'spec/integration/ffmpeg_adapter_spec.rb'
- 'spec/integration/pass_through_adapter_spec.rb'
RSpec/MessageSpies:
Exclude:
- 'spec/integration/matterhorn_adapter_spec.rb'
- 'spec/integration/ffmpeg_adapter_spec.rb'
RSpec/NamedSubject:
Enabled: false
RSpec/VerifiedDoubles:
Enabled: false
Style/GuardClause:
Exclude:
- 'lib/active_encode/engine_adapters/pass_through_adapter.rb'
- 'lib/file_locator.rb'