-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
46 lines (38 loc) · 1.02 KB
/
.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
inherit_from: .rubocop_todo.yml
AllCops:
Exclude:
- "demio-ruby.gemspec"
- "Gemfile"
- "Rakefile"
- "vendor/**/*" # Fixes weird Travis CI incorrect cop issue
Metrics/BlockLength:
Exclude:
- "spec/**/*.rb"
Style/StringLiterals:
EnforcedStyle: double_quotes
Metrics/MethodLength:
Max: 20
Metrics/AbcSize:
Max: 17
Metrics/LineLength:
Max: 100
Documentation:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Description: 'Checks for trailing comma in array literals.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
EnforcedStyleForMultiline: no_comma
SupportedStylesForMultiline:
- comma
- consistent_comma
- no_comma
Enabled: true
Style/TrailingCommaInHashLiteral:
Description: 'Checks for trailing comma in hash literals.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
EnforcedStyleForMultiline: no_comma
SupportedStylesForMultiline:
- comma
- consistent_comma
- no_comma
Enabled: true