-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
91 lines (76 loc) · 1.7 KB
/
.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
require:
- rubocop-rspec
- rubocop-rake
- rubocop-sequel
AllCops:
NewCops: enable
Exclude:
- "**/tmp/**/*"
- "**/script/**/*"
- Rakefile
- "db/schema.rb"
- "db/migrate/*"
- "lib/tasks/config.rake"
UseCache: true
TargetRubyVersion: 2.7.3
Layout/EmptyLinesAroundAttributeAccessor:
Exclude:
- 'domains/*/*.rb'
Layout/HashAlignment:
Exclude:
- "domains/**/mappers/**/*"
Metrics/AbcSize:
Exclude:
- "domains/**/adapters/**/*"
- "domains/**/scenarios/**/*"
- "domains/**/receivers/**/*"
- "domains/**/mappers/**/*"
- "domains/**/forms/**/*"
- "domains/**/clients/**/*"
- "lib/calculators/*"
- "lib/tasks/*"
Layout:
Max: 120
IgnoredPatterns: ['\s+\#\s+.*$']
Exclude:
- "config/**/*"
- "domains/**/adapters/**/*"
- "domains/**/scenarios/**/*"
Layout/MultilineMethodCallIndentation:
EnforcedStyle: 'indented'
# Configuration parameters: CountComments.
Metrics/MethodLength:
Exclude:
- "config/**/*"
- "domains/**/scenarios/**/*"
- "**/mappers/**/*"
- "domains/**/clients/**/*"
- "domains/domains/publishers/adapter.rb"
- "domains/**/forms/**/*"
Metrics/BlockLength:
Exclude:
- "config/**/*"
- "api/v1.rb"
- "**/validations/**/*"
- "**/forms/**/*"
- "lib/tasks/**/*"
- "lib/capistrano/**/*"
Layout/CommentIndentation:
Exclude:
- "Gemfile"
Style/Documentation:
Include:
- "api/services"
Style/AsciiComments:
Enabled: false
Style/Attr:
Exclude:
- "domains/*"
- "domains/**/*"
Style/AccessorGrouping:
Exclude:
- "domains/*"
- "domains/**/*"
Lint/MissingSuper:
Enabled: false
# For more information: https://docs.rubocop.org/rubocop/versioning.html