main
 1AllCops:
 2  NewCops: enable
 3  SuggestExtensions: false
 4  TargetRubyVersion: 2.6
 5
 6Layout/ArgumentAlignment:
 7  EnforcedStyle: with_fixed_indentation
 8
 9Layout/ParameterAlignment:
10  EnforcedStyle: with_fixed_indentation
11  IndentationWidth: 2
12
13Layout/EndOfLine:
14  EnforcedStyle: lf
15
16Layout/FirstArrayElementIndentation:
17  EnforcedStyle: consistent
18
19Layout/FirstHashElementIndentation:
20  EnforcedStyle: consistent
21
22Layout/MultilineMethodCallIndentation:
23  EnforcedStyle: indented
24
25Lint/AmbiguousBlockAssociation:
26  Exclude:
27    - 'spec/**/*.rb'
28
29
30Metrics/BlockLength:
31  Exclude:
32    - '*.gemspec'
33    - 'Rakefile'
34    - 'spec/**/*.rb'
35
36Metrics/ModuleLength:
37  Exclude:
38    - 'spec/**/*.rb'
39
40Layout/LineLength:
41  IgnoredPatterns:
42    - '^#*'
43
44Naming/RescuedExceptionsVariableName:
45  PreferredName: error
46
47Style/Documentation:
48  Enabled: false
49
50Style/StringLiterals:
51  EnforcedStyle: double_quotes
52
53Style/StringLiteralsInInterpolation:
54  EnforcedStyle: double_quotes
55
56Style/TrailingCommaInArrayLiteral:
57  Enabled: false
58
59Style/TrailingCommaInHashLiteral:
60  Enabled: false