-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
51 lines (39 loc) · 843 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
AllCops:
TargetRubyVersion: 2.6
NewCops: enable
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: double_quotes
Layout/LineLength:
Max: 150
Metrics/ClassLength:
Max: 300
Metrics/BlockLength:
Exclude:
- spec/**/*.rb
- docker/**/*.rb
- remotus.gemspec
- lib/remotus/ssh_connection.rb
Metrics/AbcSize:
Max: 25
Exclude:
- lib/remotus/ssh_connection.rb
Metrics/MethodLength:
Max: 20
Exclude:
- lib/remotus/ssh_connection.rb
Metrics/CyclomaticComplexity:
Exclude:
- lib/remotus/ssh_connection.rb
Metrics/PerceivedComplexity:
Exclude:
- lib/remotus/ssh_connection.rb
Metrics/ParameterLists:
Max: 6
Gemspec/RequireMFA:
Enabled: false
Gemspec/DevelopmentDependencies:
EnforcedStyle: gemspec