rubocop-config-prettier 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +35 -0
- data/config/rubocop.yml +2 -8
- data/lib/rubocop/config/prettier/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f95ed2ef31068cd5ff5dcd81b282a010a7544c7f352640c797ec302b8de2a720
|
4
|
+
data.tar.gz: baa74bd294224fc49dc0a74559381e4a6ab58c61ce2cc12cc1fb8ea64c0b813f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82432c454e7f3b3fa4b599585cc4dd607a9532edc5b9f0a16fb047729e667813a3fb67bf217eb2a0e07c7d399050dfc8017aff4aace8ea213255ece80ff63b0a
|
7
|
+
data.tar.gz: a51399d8a7302e76759e15b5d264edb0909ae5dd3c009e1f2484e81ceb397badcba750306dd16d74b146b30f0fc014a4471a74488a63efa44025c927be62db65
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rubocop-config-prettier (0.1.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.3)
|
10
|
+
rake (10.5.0)
|
11
|
+
rspec (3.8.0)
|
12
|
+
rspec-core (~> 3.8.0)
|
13
|
+
rspec-expectations (~> 3.8.0)
|
14
|
+
rspec-mocks (~> 3.8.0)
|
15
|
+
rspec-core (3.8.0)
|
16
|
+
rspec-support (~> 3.8.0)
|
17
|
+
rspec-expectations (3.8.3)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.8.0)
|
20
|
+
rspec-mocks (3.8.0)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.8.0)
|
23
|
+
rspec-support (3.8.0)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
bundler (~> 2.0)
|
30
|
+
rake (~> 10.0)
|
31
|
+
rspec (~> 3.0)
|
32
|
+
rubocop-config-prettier!
|
33
|
+
|
34
|
+
BUNDLED WITH
|
35
|
+
2.0.1
|
data/config/rubocop.yml
CHANGED
@@ -100,15 +100,12 @@ Layout/FirstMethodArgumentLineBreak:
|
|
100
100
|
Layout/FirstMethodParameterLineBreak:
|
101
101
|
Enabled: false
|
102
102
|
|
103
|
-
Layout/FirstParameterIndentation:
|
104
|
-
Enabled: false
|
105
|
-
|
106
103
|
# Layout/HeredocArgumentClosingParenthesis
|
107
104
|
|
108
|
-
Layout/
|
105
|
+
Layout/IndentAssignment:
|
109
106
|
Enabled: false
|
110
107
|
|
111
|
-
Layout/
|
108
|
+
Layout/IndentFirstArgument:
|
112
109
|
Enabled: false
|
113
110
|
|
114
111
|
Layout/IndentFirstArrayElement:
|
@@ -120,9 +117,6 @@ Layout/IndentFirstHashElement:
|
|
120
117
|
Layout/IndentFirstParameter:
|
121
118
|
Enabled: false
|
122
119
|
|
123
|
-
Layout/IndentHash:
|
124
|
-
Enabled: false
|
125
|
-
|
126
120
|
# Layout/IndentHeredoc
|
127
121
|
|
128
122
|
Layout/IndentationConsistency:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-config-prettier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Huang
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- ".rspec"
|
65
65
|
- ".travis.yml"
|
66
66
|
- Gemfile
|
67
|
+
- Gemfile.lock
|
67
68
|
- README.md
|
68
69
|
- Rakefile
|
69
70
|
- bin/console
|