-
Notifications
You must be signed in to change notification settings - Fork 32
/
.rubocop.yml
48 lines (40 loc) · 846 Bytes
/
.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
Metrics/CyclomaticComplexity:
Max: 5
AllCops:
Include:
- '**/*.rb'
- rakelib/*.rake
- 'Gemfile'
- 'Rakefile'
- 'reveal-ck.gemspec'
- 'files/reveal-ck/Guardfile'
Exclude:
- tmp/**/*
- files/reveal.js/**/*
Gemspec/RequiredRubyVersion:
Exclude:
- 'reveal-ck.gemspec'
Naming/FileName:
Exclude:
- Gemfile
- reveal-ck.gemspec
- lib/reveal-ck.rb
- files/reveal-ck/Guardfile
Style/RescueStandardError:
Exclude:
- lib/reveal-ck/commands/serve.rb
Style/FrozenStringLiteralComment:
Exclude:
- '**/*'
Metrics/BlockLength:
Exclude:
- bin/reveal-ck
- reveal-ck.gemspec
- spec/**/*.rb
Metrics/MethodLength:
Exclude:
- bin/reveal-ck
- lib/reveal-ck/config.rb
- lib/reveal-ck/builders/create_index_html.rb
Naming/MethodParameterName:
MinNameLength: 1