slimcop 0.15.0 → 0.16.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
  SHA256:
3
- metadata.gz: 617ae8055617ba19a3af9753558a3c2a20902caafcb3bbcf77ccd948b63b29f4
4
- data.tar.gz: a16fb3fdd66b5886295411a0ae0235e6506f168ce3367b75926d729a6f358409
3
+ metadata.gz: 3e16754c31e6d11c791a29a4de0901992917071dfb277f0535f11eb18673a5e5
4
+ data.tar.gz: 65f520d3498b9ba4aff643e3c858783ab8040009e74a02306e7cdeceea877d5a
5
5
  SHA512:
6
- metadata.gz: 8d6582adaecdd291cb2954b7b1c51066d3687a885874d966b3246c785fe8c7a1efba37f2ad32c9aa5b00fe4a03f38d10b5c4e2480bfe46539dbdbff50314d481
7
- data.tar.gz: ad8eca7fb4d0fd1e9bd7faf4246f465d94f0267f34f2a79a77e305543b1ec2eae2fcc0f31cad39fa27352d9b6e685c5cffa0448ad96ed24b17d3da6a63980622
6
+ metadata.gz: e7e1045da7fe86267a1c7f92a68533da838d4a5c9b00683f5e230b0e5958f803114a80f61fcddee0fa324f63d17fb0a61d224e6cfc2b8c2c6a34615433668594
7
+ data.tar.gz: c05b54d13cf8b220f32101c3f12371f3792ca5f5abef79273ca428f6ec7dde516159829610bc995156824e4ffafb5cd8d43d3ba6a464337f455fa2cef6c4e315
data/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.16.0 - 2022-01-25
6
+
7
+ ### Chnaged
8
+
9
+ - Disable Layout/FirstArrayElementLineBreak by default.
10
+ - Disable Layout/FirstHashElementLineBreak by default.
11
+ - Disable Layout/FirstMethodArgumentLineBreak by default.
12
+ - Disable Style/TrailingCommaInArrayLiteral by default.
13
+ - Disable Style/TrailingCommaInArguments by default.
14
+ - Disable Style/TrailingCommaInHashLiteral by default.
15
+
5
16
  ## 0.15.0 - 2022-01-22
6
17
 
7
18
  ### Changed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- slimcop (0.15.0)
4
+ slimcop (0.16.0)
5
5
  slimi (>= 0.5.1)
6
6
  templatecop
7
7
 
@@ -44,11 +44,11 @@ GEM
44
44
  rubocop-rspec (2.6.0)
45
45
  rubocop (~> 1.19)
46
46
  ruby-progressbar (1.11.0)
47
- slimi (0.7.1)
47
+ slimi (0.7.2)
48
48
  temple
49
49
  thor
50
50
  tilt
51
- templatecop (0.2.0)
51
+ templatecop (0.2.2)
52
52
  parallel
53
53
  parser
54
54
  rubocop (>= 0.87)
data/default.yml CHANGED
@@ -25,9 +25,18 @@ Layout/FirstArgumentIndentation:
25
25
  Layout/FirstArrayElementIndentation:
26
26
  Enabled: false
27
27
 
28
+ Layout/FirstArrayElementLineBreak:
29
+ Enabled: false
30
+
28
31
  Layout/FirstHashElementIndentation:
29
32
  Enabled: false
30
33
 
34
+ Layout/FirstHashElementLineBreak:
35
+ Enabled: false
36
+
37
+ Layout/FirstMethodArgumentLineBreak:
38
+ Enabled: false
39
+
31
40
  Layout/FirstParameterIndentation:
32
41
  Enabled: false
33
42
 
@@ -115,6 +124,15 @@ Style/Next:
115
124
  Style/RescueModifier:
116
125
  Enabled: false
117
126
 
127
+ Style/TrailingCommaInArguments:
128
+ Enabled: false
129
+
130
+ Style/TrailingCommaInArrayLiteral:
131
+ Enabled: false
132
+
133
+ Style/TrailingCommaInHashLiteral:
134
+ Enabled: false
135
+
118
136
  Style/WhileUntilDo:
119
137
  Enabled: false
120
138
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Slimcop
4
- VERSION = '0.15.0'
4
+ VERSION = '0.16.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slimcop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-22 00:00:00.000000000 Z
11
+ date: 2022-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: slimi