rubocop-standard 7.0.4 → 7.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +9 -1
- data/config/default.yml +1 -0
- data/config/sorbet.yml +2 -0
- metadata +18 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19c7ea799447dcb8ee10b342789dd54921cb88099aa47a187041aa8c147e5c0e
|
4
|
+
data.tar.gz: e7fc4ccafb68290332f4f5ed5be5d45419f3f9b788bc0d29ace819023713ccc0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e726bdd1337eb3b6d42913dd8e1bd6974ef1f353ad661b5c0f758104a74e33c39f9c498229bbdd7ebe5d0cb0b11c0aaf013a9109448b1f6e4b78003b5eda921
|
7
|
+
data.tar.gz: 923d5510bee277c30a985c7a8858d904695c2f1bde6306bd8454934536b3708ec3e71a5214012ecb7299b275ae52acb94beeb273afc6e2194dc0c18b0b022153
|
data/README.md
CHANGED
@@ -34,7 +34,13 @@ inherit_gem:
|
|
34
34
|
|
35
35
|
By default, `rubocop-performance` and `rubocop-rake` rules are enforced, because it's assumed that every Ruby project cares about these two sets. Why? Well, everyone should care about performance, and every project uses Rake (and Bundler) as de facto tools.
|
36
36
|
|
37
|
-
This gem also has
|
37
|
+
This gem also has the following Rubocop tools as dependencies:
|
38
|
+
|
39
|
+
- `rubocop-minitest`
|
40
|
+
- `rubocop-rails`
|
41
|
+
- `rubocop-sorbet
|
42
|
+
|
43
|
+
You can add those in for whichever project needs them:
|
38
44
|
|
39
45
|
```yaml
|
40
46
|
inherit_gem:
|
@@ -52,7 +58,9 @@ This project also excludes directories that are ancillary to the core lib code:
|
|
52
58
|
AllCops:
|
53
59
|
Exclude:
|
54
60
|
- bin/**/*
|
61
|
+
- db/**/*
|
55
62
|
- node_modules/**/*
|
63
|
+
- sorbet/**/*
|
56
64
|
- tmp/**/*
|
57
65
|
- vendor/**/*
|
58
66
|
```
|
data/config/default.yml
CHANGED
data/config/sorbet.yml
ADDED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-standard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0
|
4
|
+
version: 7.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Garen Torikian
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -80,6 +80,20 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop-sorbet
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
83
97
|
- !ruby/object:Gem::Dependency
|
84
98
|
name: rubocop-shopify
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -121,6 +135,7 @@ files:
|
|
121
135
|
- config/default.yml
|
122
136
|
- config/minitest.yml
|
123
137
|
- config/rails.yml
|
138
|
+
- config/sorbet.yml
|
124
139
|
homepage: https://github.com/gjtorikian/rubocop-standard
|
125
140
|
licenses:
|
126
141
|
- MIT
|
@@ -144,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
159
|
- !ruby/object:Gem::Version
|
145
160
|
version: '0'
|
146
161
|
requirements: []
|
147
|
-
rubygems_version: 3.3.
|
162
|
+
rubygems_version: 3.3.22
|
148
163
|
signing_key:
|
149
164
|
specification_version: 4
|
150
165
|
summary: Enhanced RuboCop configurations
|