-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rubocop.yml
More file actions
48 lines (39 loc) · 706 Bytes
/
Copy path.rubocop.yml
File metadata and controls
48 lines (39 loc) · 706 Bytes
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
AllCops:
DisplayCopNames: true
Exclude:
- 'bin/**/*'
- 'db/migrate/**/*'
- 'db/schema.rb'
- 'node_modules/**/*'
- 'vendor/**/*'
Metrics/BlockLength:
Exclude:
- config/**/*.rb
- lib/tasks/**/*.rake
- spec/**/*.rb
- '**/Gemfile'
Metrics/LineLength:
Max: 150
AllowURI: true
- http
- https
Exclude:
- config/**/*
Style/Documentation:
Enabled: false
Naming/FileName:
Exclude:
- '**/Gemfile'
- '**/Rakefile'
Style/AsciiComments:
Enabled: false
Metrics/MethodLength:
CountComments: false
Max: 19
Metrics/AbcSize:
Max: 25
Lint/AmbiguousBlockAssociation:
Exclude:
- "spec/**/*"
Style/FormatStringToken:
Enabled: false