blob: 7d315f1b2585c1e12d6199afbd779e9a1ea37daf (
plain)
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
|
inherit_from: .rubocop_todo.yml
require:
- rubocop-performance
- rubocop-minitest
AllCops:
DisabledByDefault: true
NewCops: enable
SuggestExtensions: false
TargetRubyVersion: 2.6
DisplayStyleGuide: true
ExtraDetails: true
Exclude:
- 'docs/**/*'
- 'examples/**/*'
- 'vendor/bundle/**/*'
Layout:
Enabled: true
Layout/CommentIndentation:
AllowForAlignment: true
Layout/ExtraSpacing:
AllowBeforeTrailingComments: true
Lint:
Enabled: true
Minitest:
Enabled: true
Performance:
Enabled: true
Style:
Enabled: true
# FIXME: remove this rule
Style/HashSyntax:
Exclude:
- 'lib/**/*'
Style/Semicolon:
AllowAsExpressionSeparator: true
Style/NumericLiterals:
Exclude:
- 'lib/**/*'
|