main
 1AllCops:
 2  Exclude:
 3    - 'coverage/**/*'
 4    - 'pkg/**/*'
 5    - 'spec/**/*'
 6    - 'tmp/**/*'
 7    - 'vendor/**/*'
 8  TargetRubyVersion: 2.5
 9
10Layout/ClassStructure:
11  Enabled: true
12  Categories:
13    module_inclusion:
14      - include
15      - prepend
16      - extend
17  ExpectedOrder:
18      - module_inclusion
19      - constants
20      - public_class_methods
21      - initializer
22      - instance_methods
23      - protected_methods
24      - private_methods
25
26Layout/EndOfLine:
27  EnforcedStyle: lf
28
29Layout/IndentArray:
30  EnforcedStyle: consistent
31
32Layout/IndentHeredoc:
33  EnforcedStyle: active_support
34
35Metrics/BlockLength:
36  Exclude:
37    - '*.gemspec'
38    - 'Rakefile'
39
40Style/Documentation:
41  Enabled: false