-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
52 lines (42 loc) · 883 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
Rails:
Enabled: true
Metrics/LineLength:
Max: 120
Exclude:
- 'spec/**/*'
Metrics/AbcSize:
Max: 20
Exclude:
- 'app/models/user.rb'
Style/FrozenStringLiteralComment:
Enabled: false
Style/SymbolArray:
Exclude:
- 'config/routes.rb'
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'app/controllers/*.rb'
- 'app/helpers/*.rb'
- 'app/mailers/application_mailer.rb'
- 'app/models/application_record.rb'
- 'config/application.rb'
Style/BlockDelimiters:
Exclude:
- 'spec/**/*'
Style/SymbolArray:
Enabled: false
Metrics/MethodLength:
Exclude:
- 'app/controllers/rooms_controller.rb'
Metrics/BlockLength:
Exclude:
- 'Guardfile'
- 'db/schema.rb'
- 'spec/**/*'
- 'config/initializers/simple_form_bootstrap.rb'
- 'config/environments/*'
AllCops:
Exclude:
- 'db/schema.rb'
- 'db/migrate/*.rb'