forked from acquia/moonshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
44 lines (44 loc) · 890 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
---
AllCops:
TargetRubyVersion: 3.1.3
Exclude:
- '.gemspec'
- 'vendor/**/*'
- 'sample/bin/aws-codedeploy-samples/**/*'
- 'sample/gems/**/*'
- 'spec/**/*'
- 'lib/default/**/*'
Metrics/AbcSize:
Max: 35
Metrics/BlockLength:
Max: 35
Metrics/MethodLength:
Max: 30
Metrics/LineLength:
Max: 120
Style/ClassAndModuleChildren:
Enabled: false
Metrics/ClassLength:
Max: 130
Style/Documentation:
Enabled: false
Lint/MissingSuper:
Enabled: false
Style/MissingRespondToMissing:
Enabled: false
Layout/HeredocIndentation:
Enabled: false
Naming/HeredocDelimiterNaming:
Enabled: false
Naming/MemoizedInstanceVariableName:
Enabled: false
Naming/MethodParameterName:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Style/OptionalBooleanParameter:
Enabled: false
Lint/EmptyFile:
Enabled: false