-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rubocop.yml
More file actions
53 lines (41 loc) · 875 Bytes
/
.rubocop.yml
File metadata and controls
53 lines (41 loc) · 875 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
49
50
51
52
53
inherit_from: .rubocop_todo.yml
plugins:
- rubocop-md
- rubocop-packaging
- rubocop-performance
- rubocop-rake
- rubocop-rspec
- rubocop-thread_safety
AllCops:
NewCops: enable
SuggestExtensions: false
Layout/HashAlignment:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
Layout/LineLength:
Max: 140
AllowedPatterns:
- '\A\s*#'
Metrics/BlockLength:
Exclude:
- "spec/**/*"
- "*.gemspec"
Metrics/MethodLength:
Max: 20
Exclude:
- "spec/**/*"
Style/AsciiComments:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: true
EnforcedStyle: never
Style/Documentation:
Enabled: false
Style/MethodDefParentheses:
EnforcedStyle: require_no_parentheses
Style/StringLiterals:
Enabled: true
EnforcedStyle: single_quotes
Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: single_quotes