-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.rubocop.yml
63 lines (49 loc) · 1.33 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
inherit_from:
- .googlestyle.yaml
- .rubocop_todo.yml
AllCops:
NewCops: disable
SuggestExtensions: false
TargetRubyVersion: 3.1
Exclude:
- "vendor/**/*"
- "db/**/*"
- "bin/*"
- "node_modules/**/*"
- "Gemfile"
# テストは長文がアサーションに必要な場合もあるため一旦無視
Layout/LineLength:
Exclude:
- "spec/**/*"
# テストはブロック内の行数が増える場合もあるため
Metrics/BlockLength:
Exclude:
- "spec/**/*"
# 非直感的なネーミングを強制されるため無効
Naming/MemoizedInstanceVariableName:
Enabled: false
# do-end と ブラケットが混在するため無効
Style/BlockDelimiters:
Enabled: false
# 必ずしも文字列を破壊的に操作したくない場合があるため
Style/StringConcatenation:
Enabled: false
Style/MethodDefParentheses:
EnforcedStyle: require_parentheses
Style/StringLiterals:
EnforcedStyle: single_quotes
# nextの使用は強制されたくない
Style/Next:
Enabled: false
# 空のブロックは許容したい
Lint/EmptyBlock:
Enabled: false
Naming/HeredocDelimiterNaming:
Enabled: false
Style/WordArray:
Enabled: false
Lint/Debugger:
Enabled: false
# channels.size.positive? を channels.size > 0 の代わりに強制されるのは困る
Style/NumericPredicate:
Enabled: false