fablicop 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 27ae07db56461d154046bf70225e52aba18cc048
4
- data.tar.gz: ee414d5b1e300682233ff6399ec6d9bb10a0da59
3
+ metadata.gz: 808665dd1fd52440df98197ff67cb531693e9c27
4
+ data.tar.gz: af16195d542741208f63bb618006f3b81dc24400
5
5
  SHA512:
6
- metadata.gz: f4de17ffc68e508ada6aa202d6005e64e57a32a6dc10baab1f8fbdffcd4ec0d14288682cb1b05b06bb01605a625f3c61430babb99aa8c8aaa5a5abd4b3a08bbb
7
- data.tar.gz: dbc54195979ec4fbd0205213782d1502570012e883212ec28b1f5fd5c136c39b1f51d0609c3115b5c9e2435162c97994de4478b7ebf4ee3ee899ca4586118111
6
+ metadata.gz: 62f86c8caf26512cb542e38d0fc2cae13715905ebb8014602bd7452ec83e99fd739c3e2bdbb59fe30924e4789fdacbad6371cd416ee8ec78cdc7f2cd3466354c
7
+ data.tar.gz: 0b12ea3ac2c94ec0cca0307d9bed9dc01a0e0860c1c7fb28d767a762bb6238429e0c77f94841b21b4231d4c9905dabe830243c053475f249f66c6fb0a79c2463
data/config/.rubocop.yml CHANGED
@@ -21,7 +21,7 @@ Rails/HttpPositionalArguments:
21
21
  Style/AsciiComments:
22
22
  Enabled: false
23
23
 
24
- # 複数行の場合はケツカンマを入れる
24
+ # 複数行の場合は末尾にカンマを入れる
25
25
  Style/TrailingCommaInLiteral:
26
26
  EnforcedStyleForMultiline: comma
27
27
  Style/TrailingCommaInArguments:
@@ -59,11 +59,47 @@ Style/MultilineBlockChain:
59
59
  Enabled: false
60
60
  Style/EmptyMethod:
61
61
  Enabled: false
62
+ # 引数の書き方の多様性を許可
63
+ # foo(a,
64
+ # b
65
+ # )
66
+ # foo(
67
+ # a,
68
+ # b)
69
+ # foo(
70
+ # a,
71
+ # b
72
+ # )
73
+ # foo(a,
74
+ # b)
62
75
  Style/MultilineMethodCallBraceLayout:
63
76
  Enabled: false
77
+ # メソッド指定の多様性を許可
78
+ # while a
79
+ # .b
80
+ # something
81
+ # end
82
+ # while a
83
+ # .b
84
+ # something
85
+ # end
86
+ # Thing.a
87
+ # .b
88
+ # .c
89
+ # while a
90
+ # .b
91
+ # something
92
+ # end
64
93
  Style/MultilineMethodCallIndentation:
65
94
  Enabled: false
66
95
 
96
+ # aaa(bbb(
97
+ # ccc
98
+ # ))
99
+ # 的なのができないのは不便すぎるのでdisable
100
+ Style/FirstParameterIndentation:
101
+ Enabled: false
102
+
67
103
  ##################### Layout ##################################
68
104
  # 引数前のスペースは複数許可
69
105
  Layout/SpaceBeforeFirstArg:
@@ -1,3 +1,3 @@
1
1
  module Fablicop
2
- VERSION = '0.2.0'
2
+ VERSION = '0.3.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fablicop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - tommy