-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
58 lines (49 loc) · 988 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
49
50
51
52
53
54
55
56
57
58
require:
- 'rubocop-performance'
- 'rubocop-rails'
- 'rubocop-minitest'
- 'rubocop-rake'
AllCops:
NewCops: enable
# Don't run rubocop on these files/directories
Exclude:
- '**/templates/**/*'
- '**/vendor/**/*'
- 'actionpack/lib/action_dispatch/journey/parser.rb'
- 'lib/templates/**/*'
- 'db/**/*'
- 'config/**/*'
- 'vendor/**/*'
- 'bin/**/*'
- 'node_modules/**/*'
Layout/LineLength:
Max: 80
Exclude:
- 'lib/hierarchable/hierarchable.rb'
Metrics/AbcSize:
Max: 30
Exclude:
- 'test/**/*'
Metrics/BlockLength:
Max: 40
Exclude:
- 'hierarchable.gemspec'
- 'lib/hierarchable/hierarchable.rb'
- 'test/**/*'
Metrics/ClassLength:
Max: 150
Exclude:
- 'test/**/*'
Metrics/MethodLength:
Max: 35
Exclude:
- 'test/**/*'
Metrics/ModuleLength:
Max: 100
Exclude:
- 'lib/hierarchable/hierarchable.rb'
Minitest/MultipleAssertions:
Max: 10
Rails/RefuteMethods:
Exclude:
- 'test/**/*'