-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
71 lines (56 loc) · 1.54 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
inherit_from: .rubocop_todo.yml
require:
- rubocop-rails
# 対象外
AllCops:
NewCops: enable
Exclude:
- "vendor/**/*"
- "bin/**"
- "db/schema.rb"
- "node_modules/**/*"
- "tmp/**/*"
- "lib/**/*"
DisplayCopNames: true
TargetRubyVersion: 2.6
# trueかfalseを設定しないと警告が出る
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
##################### Style ##################################
# 日本語のコメントを許可する
Style/AsciiComments:
Enabled: false
# ドキュメントの無いpublic classを許可する
Style/Documentation:
Enabled: false
# !! のイディオムを許可
Style/DoubleNegation:
Enabled: false
#文字列をfreezeするか
Style/FrozenStringLiteralComment:
Enabled: false
# selfが無くても良い時に省略するか。model内において、ローカル変数とメソッド呼び出しの区別をつけた方が分かりやすい場合が多い
Style/RedundantSelf:
Enabled: false
##################### Lint ##################################
##################### Metrics ##################################
# 変数の代入(A)、メソッドの呼び出し等(B)、条件分岐(C)から算出される複雑度
Metrics/AbcSize:
Max: 30
# 循環的複雑度 ≒ 分岐の数
Metrics/CyclomaticComplexity:
Max: 10
# 1行の文字数
Layout/LineLength:
Max: 160
Exclude:
- "db/migrate/*.rb"
# メソッドの行数
Metrics/MethodLength:
Max: 20
Exclude:
- "db/migrate/*.rb"