-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.rubocop.yml
47 lines (35 loc) · 1.11 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
inherit_from: .rubocop_todo.yml
require:
- rubocop-rake
- rubocop-rspec
AllCops:
EnabledByDefault: true
TargetRubyVersion: 2.7
Metrics/BlockLength:
Exclude:
- japanese_address_parser.gemspec
- spec/**/*_spec.rb
# contextの記述を日本語で記述するのを許容する。
RSpec/ContextWording:
Enabled: false
RSpec/ExampleLength:
Enabled: false
RSpec/MultipleExpectations:
Enabled: false
# MITなのでファイルの著作権は記載しない。
Style/Copyright:
Enabled: false
# コメントを日本語で記述するのを許容する。
Style/AsciiComments:
Enabled: false
Style/StringHashKeys:
Exclude:
# CSVのヘッダーの日本語を解釈するために日本語文字列のハッシュを許容する。
- lib/japanese_address_parser/csv_parser.rb
# ライブラリが返すハッシュのキーが文字列なので許容する。
- spec/japanese_address_parser/address_normalizer_spec.rb
# elseがない場合にはcase文ではなくif文を許容する。
Style/MissingElse:
EnforcedStyle: case
Gemspec/DependencyVersion:
EnforcedStyle: forbidden