dashbrains-rubocop-config 1.0.6 → 1.0.8
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 +4 -4
- data/.github/workflows/lint_format.yml +2 -2
- data/.github/workflows/release.yml +1 -1
- data/.ruby-version +1 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +14 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +75 -53
- data/dashbrains-rubocop-config.gemspec +2 -0
- data/lib/version.rb +1 -1
- data/rubocop.yml +9 -3
- metadata +31 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20e51d0d2f7bc0cd87c9c001c2a5f6eba03438813d5d6c4ac1bcdb63ad0c1dc7
|
4
|
+
data.tar.gz: 351898c81392355973102c0c3a66198ef47c53bc44faf5df3f9a044e36a7af45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1958bfee123afd8e79b872ac4cc25ea1310773e0a4dcee5c2adc706eef446e8417889b3bf42ad447f474a939d24ed62c34b7e1ccf40bce386f474fe95de0381a
|
7
|
+
data.tar.gz: ee854d5b3565db5cfc91fc00873c0ff5fa3b47e582a60682a0d01ecc5359ae1360ff71388a3d2f33a3a4d3bcd37853ffa110efe5cda096df5ec05d18bd674a2a
|
@@ -11,7 +11,7 @@ jobs:
|
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
steps:
|
13
13
|
- name: Checkout
|
14
|
-
uses: actions/checkout@
|
14
|
+
uses: actions/checkout@v5
|
15
15
|
- uses: ruby/setup-ruby@v1
|
16
16
|
with:
|
17
17
|
bundler-cache: true
|
@@ -22,7 +22,7 @@ jobs:
|
|
22
22
|
runs-on: ubuntu-latest
|
23
23
|
steps:
|
24
24
|
- name: Checkout
|
25
|
-
uses: actions/checkout@
|
25
|
+
uses: actions/checkout@v5
|
26
26
|
- uses: ruby/setup-ruby@v1
|
27
27
|
with:
|
28
28
|
bundler-cache: true
|
@@ -22,7 +22,7 @@ jobs:
|
|
22
22
|
with:
|
23
23
|
release-type: ruby
|
24
24
|
token: "${{ secrets.PAT_TOKEN }}"
|
25
|
-
- uses: actions/checkout@
|
25
|
+
- uses: actions/checkout@v5
|
26
26
|
if: ${{ steps.release.outputs.release_created }}
|
27
27
|
- uses: ruby/setup-ruby@v1
|
28
28
|
if: ${{ steps.release.outputs.release_created }}
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.4.
|
1
|
+
3.4.6
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.4.
|
1
|
+
ruby 3.4.6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.0.8](https://github.com/DashBrains/rubocop-config/compare/v1.0.7...v1.0.8) (2025-09-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Miscellaneous Chores
|
7
|
+
|
8
|
+
* release 1.0.8 ([8841ba0](https://github.com/DashBrains/rubocop-config/commit/8841ba0caca37480ddb23e2ed8e279c26f18c3fb))
|
9
|
+
|
10
|
+
## [1.0.7](https://github.com/DashBrains/rubocop-config/compare/v1.0.6...v1.0.7) (2025-06-12)
|
11
|
+
|
12
|
+
|
13
|
+
### Miscellaneous Chores
|
14
|
+
|
15
|
+
* release 1.0.7 ([ac74218](https://github.com/DashBrains/rubocop-config/commit/ac74218aa78f5b2ef83893f7f6263d8914292e3e))
|
16
|
+
|
3
17
|
## [1.0.6](https://github.com/DashBrains/rubocop-config/compare/v1.1.0...v1.0.6) (2025-02-08)
|
4
18
|
|
5
19
|
|
data/Gemfile
CHANGED
@@ -18,6 +18,8 @@ gem 'rubocop-rspec', require: false
|
|
18
18
|
gem 'rubocop-rspec_rails', require: false
|
19
19
|
gem 'rubocop-sorbet', require: false
|
20
20
|
gem 'standard', require: false
|
21
|
+
gem 'standard-rails', require: false
|
22
|
+
gem 'standard-sorbet', require: false
|
21
23
|
|
22
24
|
group :development do
|
23
25
|
# Bundle-audit
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dashbrains-rubocop-config (1.0.
|
4
|
+
dashbrains-rubocop-config (1.0.8)
|
5
5
|
rubocop
|
6
6
|
rubocop-capybara
|
7
7
|
rubocop-factory_bot
|
@@ -13,11 +13,13 @@ PATH
|
|
13
13
|
rubocop-rspec_rails
|
14
14
|
rubocop-sorbet
|
15
15
|
standard
|
16
|
+
standard-rails
|
17
|
+
standard-sorbet
|
16
18
|
|
17
19
|
GEM
|
18
20
|
remote: https://rubygems.org/
|
19
21
|
specs:
|
20
|
-
activesupport (8.0.
|
22
|
+
activesupport (8.0.3)
|
21
23
|
base64
|
22
24
|
benchmark (>= 0.3)
|
23
25
|
bigdecimal
|
@@ -30,88 +32,106 @@ GEM
|
|
30
32
|
securerandom (>= 0.3)
|
31
33
|
tzinfo (~> 2.0, >= 2.0.5)
|
32
34
|
uri (>= 0.13.1)
|
33
|
-
ast (2.4.
|
34
|
-
base64 (0.
|
35
|
-
benchmark (0.4.
|
36
|
-
bigdecimal (3.
|
35
|
+
ast (2.4.3)
|
36
|
+
base64 (0.3.0)
|
37
|
+
benchmark (0.4.1)
|
38
|
+
bigdecimal (3.2.3)
|
37
39
|
bundler-audit (0.9.2)
|
38
40
|
bundler (>= 1.2.0, < 3)
|
39
41
|
thor (~> 1.0)
|
40
42
|
concurrent-ruby (1.3.5)
|
41
|
-
connection_pool (2.5.
|
42
|
-
drb (2.2.
|
43
|
+
connection_pool (2.5.4)
|
44
|
+
drb (2.2.3)
|
43
45
|
i18n (1.14.7)
|
44
46
|
concurrent-ruby (~> 1.0)
|
45
|
-
json (2.
|
46
|
-
language_server-protocol (3.17.0.
|
47
|
+
json (2.15.0)
|
48
|
+
language_server-protocol (3.17.0.5)
|
47
49
|
lint_roller (1.1.0)
|
48
|
-
logger (1.
|
49
|
-
minitest (5.25.
|
50
|
-
parallel (1.
|
51
|
-
parser (3.3.
|
50
|
+
logger (1.7.0)
|
51
|
+
minitest (5.25.5)
|
52
|
+
parallel (1.27.0)
|
53
|
+
parser (3.3.9.0)
|
52
54
|
ast (~> 2.4.1)
|
53
55
|
racc
|
56
|
+
prism (1.5.1)
|
54
57
|
racc (1.8.1)
|
55
|
-
rack (3.1
|
58
|
+
rack (3.2.1)
|
56
59
|
rainbow (3.1.1)
|
57
|
-
regexp_parser (2.
|
58
|
-
rubocop (1.
|
60
|
+
regexp_parser (2.11.3)
|
61
|
+
rubocop (1.80.2)
|
59
62
|
json (~> 2.3)
|
60
|
-
language_server-protocol (
|
63
|
+
language_server-protocol (~> 3.17.0.2)
|
64
|
+
lint_roller (~> 1.1.0)
|
61
65
|
parallel (~> 1.10)
|
62
66
|
parser (>= 3.3.0.2)
|
63
67
|
rainbow (>= 2.2.2, < 4.0)
|
64
68
|
regexp_parser (>= 2.9.3, < 3.0)
|
65
|
-
rubocop-ast (>= 1.
|
69
|
+
rubocop-ast (>= 1.46.0, < 2.0)
|
66
70
|
ruby-progressbar (~> 1.7)
|
67
71
|
unicode-display_width (>= 2.4.0, < 4.0)
|
68
|
-
rubocop-ast (1.
|
69
|
-
parser (>= 3.3.
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
rubocop (~> 1.
|
74
|
-
rubocop-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
72
|
+
rubocop-ast (1.47.1)
|
73
|
+
parser (>= 3.3.7.2)
|
74
|
+
prism (~> 1.4)
|
75
|
+
rubocop-capybara (2.22.1)
|
76
|
+
lint_roller (~> 1.1)
|
77
|
+
rubocop (~> 1.72, >= 1.72.1)
|
78
|
+
rubocop-factory_bot (2.27.1)
|
79
|
+
lint_roller (~> 1.1)
|
80
|
+
rubocop (~> 1.72, >= 1.72.1)
|
81
|
+
rubocop-graphql (1.5.6)
|
82
|
+
lint_roller (~> 1.1)
|
83
|
+
rubocop (>= 1.72.1, < 2)
|
84
|
+
rubocop-minitest (0.38.2)
|
85
|
+
lint_roller (~> 1.1)
|
86
|
+
rubocop (>= 1.75.0, < 2.0)
|
87
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
88
|
+
rubocop-performance (1.25.0)
|
89
|
+
lint_roller (~> 1.1)
|
90
|
+
rubocop (>= 1.75.0, < 2.0)
|
91
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
92
|
+
rubocop-rails (2.31.0)
|
83
93
|
activesupport (>= 4.2.0)
|
94
|
+
lint_roller (~> 1.1)
|
84
95
|
rack (>= 1.1)
|
85
|
-
rubocop (>= 1.
|
86
|
-
rubocop-ast (>= 1.
|
87
|
-
rubocop-rspec (3.
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
96
|
+
rubocop (>= 1.75.0, < 2.0)
|
97
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
98
|
+
rubocop-rspec (3.7.0)
|
99
|
+
lint_roller (~> 1.1)
|
100
|
+
rubocop (~> 1.72, >= 1.72.1)
|
101
|
+
rubocop-rspec_rails (2.31.0)
|
102
|
+
lint_roller (~> 1.1)
|
103
|
+
rubocop (~> 1.72, >= 1.72.1)
|
104
|
+
rubocop-rspec (~> 3.5)
|
105
|
+
rubocop-sorbet (0.9.0)
|
106
|
+
lint_roller (~> 1.1)
|
93
107
|
rubocop (>= 1)
|
94
108
|
ruby-progressbar (1.13.0)
|
95
109
|
securerandom (0.4.1)
|
96
|
-
standard (1.
|
110
|
+
standard (1.51.1)
|
97
111
|
language_server-protocol (~> 3.17.0.2)
|
98
112
|
lint_roller (~> 1.0)
|
99
|
-
rubocop (~> 1.
|
113
|
+
rubocop (~> 1.80.2)
|
100
114
|
standard-custom (~> 1.0.0)
|
101
|
-
standard-performance (~> 1.
|
115
|
+
standard-performance (~> 1.8)
|
102
116
|
standard-custom (1.0.2)
|
103
117
|
lint_roller (~> 1.0)
|
104
118
|
rubocop (~> 1.50)
|
105
|
-
standard-performance (1.
|
119
|
+
standard-performance (1.8.0)
|
120
|
+
lint_roller (~> 1.1)
|
121
|
+
rubocop-performance (~> 1.25.0)
|
122
|
+
standard-rails (1.4.0)
|
123
|
+
lint_roller (~> 1.0)
|
124
|
+
rubocop-rails (~> 2.31.0)
|
125
|
+
standard-sorbet (0.0.3)
|
106
126
|
lint_roller (~> 1.1)
|
107
|
-
rubocop-
|
108
|
-
thor (1.
|
127
|
+
rubocop-sorbet (~> 0.9.0)
|
128
|
+
thor (1.4.0)
|
109
129
|
tzinfo (2.0.6)
|
110
130
|
concurrent-ruby (~> 1.0)
|
111
|
-
unicode-display_width (3.
|
112
|
-
unicode-emoji (~> 4.
|
113
|
-
unicode-emoji (4.0
|
114
|
-
uri (1.0.
|
131
|
+
unicode-display_width (3.2.0)
|
132
|
+
unicode-emoji (~> 4.1)
|
133
|
+
unicode-emoji (4.1.0)
|
134
|
+
uri (1.0.3)
|
115
135
|
|
116
136
|
PLATFORMS
|
117
137
|
arm64-darwin-22
|
@@ -135,6 +155,8 @@ DEPENDENCIES
|
|
135
155
|
rubocop-rspec_rails
|
136
156
|
rubocop-sorbet
|
137
157
|
standard
|
158
|
+
standard-rails
|
159
|
+
standard-sorbet
|
138
160
|
|
139
161
|
BUNDLED WITH
|
140
|
-
2.
|
162
|
+
2.7.2
|
data/lib/version.rb
CHANGED
data/rubocop.yml
CHANGED
@@ -1,14 +1,20 @@
|
|
1
1
|
require:
|
2
|
+
- standard
|
3
|
+
|
4
|
+
plugins:
|
2
5
|
- rubocop-minitest
|
3
6
|
- rubocop-performance
|
4
|
-
|
7
|
+
#- rubocop-rails
|
5
8
|
- rubocop-graphql
|
6
9
|
- rubocop-rspec
|
7
|
-
|
10
|
+
#- rubocop-sorbet
|
8
11
|
- rubocop-factory_bot
|
9
12
|
- rubocop-capybara
|
10
13
|
- rubocop-rspec_rails
|
11
|
-
- standard
|
14
|
+
- standard-custom
|
15
|
+
- standard-performance
|
16
|
+
- standard-rails
|
17
|
+
- standard-sorbet
|
12
18
|
|
13
19
|
inherit_gem:
|
14
20
|
standard: config/base.yml
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dashbrains-rubocop-config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DashBrains
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: rubocop
|
@@ -163,6 +163,34 @@ dependencies:
|
|
163
163
|
- - ">="
|
164
164
|
- !ruby/object:Gem::Version
|
165
165
|
version: '0'
|
166
|
+
- !ruby/object:Gem::Dependency
|
167
|
+
name: standard-rails
|
168
|
+
requirement: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - ">="
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '0'
|
173
|
+
type: :runtime
|
174
|
+
prerelease: false
|
175
|
+
version_requirements: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - ">="
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0'
|
180
|
+
- !ruby/object:Gem::Dependency
|
181
|
+
name: standard-sorbet
|
182
|
+
requirement: !ruby/object:Gem::Requirement
|
183
|
+
requirements:
|
184
|
+
- - ">="
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: '0'
|
187
|
+
type: :runtime
|
188
|
+
prerelease: false
|
189
|
+
version_requirements: !ruby/object:Gem::Requirement
|
190
|
+
requirements:
|
191
|
+
- - ">="
|
192
|
+
- !ruby/object:Gem::Version
|
193
|
+
version: '0'
|
166
194
|
description: Shared Rubocop config used at DashBrains
|
167
195
|
email:
|
168
196
|
- contact@dashbrains.dev
|
@@ -209,7 +237,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
237
|
- !ruby/object:Gem::Version
|
210
238
|
version: '0'
|
211
239
|
requirements: []
|
212
|
-
rubygems_version: 3.6.
|
240
|
+
rubygems_version: 3.6.9
|
213
241
|
specification_version: 4
|
214
242
|
summary: Rubocop config for DashBrains
|
215
243
|
test_files: []
|