dashbrains-rubocop-config 1.0.4 → 1.0.6
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/automerge.yml +1 -1
- data/.gitignore +3 -0
- data/.ruby-version +1 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +14 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +46 -25
- data/dashbrains-rubocop-config.gemspec +2 -1
- data/lib/version.rb +1 -1
- data/rubocop.yml +29 -0
- metadata +17 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e890c37766577824e2dd9e13a17419a069905e33278148422dc7e1afc633be0
|
4
|
+
data.tar.gz: ef286f72b12ef4b637d41f82a7085f151b11b099356e2ad7701dac249521fd09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19fa076ab801e64fe5c26420ebd4f302e2ce1197cb1bfbe239507fbfe203f2d8d3829c353162a12f0d03b071f2e68317baa8e434b5b62207e03676347908c5c0
|
7
|
+
data.tar.gz: e73bf2173f5e0c1305e29522a047841678b6f66a8a1885f62b509cfbb23f8db2c9009275f2d28590c1d3579f45d7b24994d889d759dab7d185a2502e265ffbd0
|
data/.gitignore
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.4.1
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.
|
1
|
+
ruby 3.4.1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.0.6](https://github.com/DashBrains/rubocop-config/compare/v1.1.0...v1.0.6) (2025-02-08)
|
4
|
+
|
5
|
+
|
6
|
+
### Miscellaneous Chores
|
7
|
+
|
8
|
+
* release 1.0.6 ([30d003b](https://github.com/DashBrains/rubocop-config/commit/30d003b26e6bd138fc4f8c87b249df4f9d3e0171))
|
9
|
+
|
10
|
+
## [1.1.0](https://github.com/DashBrains/rubocop-config/compare/v1.0.4...v1.1.0) (2024-10-19)
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
* add standard ([4331be4](https://github.com/DashBrains/rubocop-config/commit/4331be4d46d6352969c33d77a3f059914de26c0f))
|
16
|
+
|
3
17
|
## [1.0.4](https://github.com/DashBrains/rubocop-config/compare/v1.0.3...v1.0.4) (2024-08-31)
|
4
18
|
|
5
19
|
|
data/Gemfile
CHANGED
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.6)
|
5
5
|
rubocop
|
6
6
|
rubocop-capybara
|
7
7
|
rubocop-factory_bot
|
@@ -12,12 +12,14 @@ PATH
|
|
12
12
|
rubocop-rspec
|
13
13
|
rubocop-rspec_rails
|
14
14
|
rubocop-sorbet
|
15
|
+
standard
|
15
16
|
|
16
17
|
GEM
|
17
18
|
remote: https://rubygems.org/
|
18
19
|
specs:
|
19
|
-
activesupport (
|
20
|
+
activesupport (8.0.1)
|
20
21
|
base64
|
22
|
+
benchmark (>= 0.3)
|
21
23
|
bigdecimal
|
22
24
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
23
25
|
connection_pool (>= 2.2.5)
|
@@ -27,40 +29,43 @@ GEM
|
|
27
29
|
minitest (>= 5.1)
|
28
30
|
securerandom (>= 0.3)
|
29
31
|
tzinfo (~> 2.0, >= 2.0.5)
|
32
|
+
uri (>= 0.13.1)
|
30
33
|
ast (2.4.2)
|
31
34
|
base64 (0.2.0)
|
32
|
-
|
35
|
+
benchmark (0.4.0)
|
36
|
+
bigdecimal (3.1.9)
|
33
37
|
bundler-audit (0.9.2)
|
34
38
|
bundler (>= 1.2.0, < 3)
|
35
39
|
thor (~> 1.0)
|
36
|
-
concurrent-ruby (1.3.
|
37
|
-
connection_pool (2.
|
40
|
+
concurrent-ruby (1.3.5)
|
41
|
+
connection_pool (2.5.0)
|
38
42
|
drb (2.2.1)
|
39
|
-
i18n (1.14.
|
43
|
+
i18n (1.14.7)
|
40
44
|
concurrent-ruby (~> 1.0)
|
41
|
-
json (2.
|
42
|
-
language_server-protocol (3.17.0.
|
43
|
-
|
44
|
-
|
45
|
+
json (2.9.1)
|
46
|
+
language_server-protocol (3.17.0.4)
|
47
|
+
lint_roller (1.1.0)
|
48
|
+
logger (1.6.5)
|
49
|
+
minitest (5.25.4)
|
45
50
|
parallel (1.26.3)
|
46
|
-
parser (3.3.
|
51
|
+
parser (3.3.7.1)
|
47
52
|
ast (~> 2.4.1)
|
48
53
|
racc
|
49
54
|
racc (1.8.1)
|
50
|
-
rack (3.1.
|
55
|
+
rack (3.1.9)
|
51
56
|
rainbow (3.1.1)
|
52
|
-
regexp_parser (2.
|
53
|
-
rubocop (1.
|
57
|
+
regexp_parser (2.10.0)
|
58
|
+
rubocop (1.70.0)
|
54
59
|
json (~> 2.3)
|
55
60
|
language_server-protocol (>= 3.17.0)
|
56
61
|
parallel (~> 1.10)
|
57
62
|
parser (>= 3.3.0.2)
|
58
63
|
rainbow (>= 2.2.2, < 4.0)
|
59
|
-
regexp_parser (>= 2.
|
60
|
-
rubocop-ast (>= 1.
|
64
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
65
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
61
66
|
ruby-progressbar (~> 1.7)
|
62
|
-
unicode-display_width (>= 2.4.0, <
|
63
|
-
rubocop-ast (1.
|
67
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
68
|
+
rubocop-ast (1.38.0)
|
64
69
|
parser (>= 3.3.1.0)
|
65
70
|
rubocop-capybara (2.21.0)
|
66
71
|
rubocop (~> 1.41)
|
@@ -71,27 +76,42 @@ GEM
|
|
71
76
|
rubocop-minitest (0.36.0)
|
72
77
|
rubocop (>= 1.61, < 2.0)
|
73
78
|
rubocop-ast (>= 1.31.1, < 2.0)
|
74
|
-
rubocop-performance (1.
|
79
|
+
rubocop-performance (1.23.1)
|
75
80
|
rubocop (>= 1.48.1, < 2.0)
|
76
81
|
rubocop-ast (>= 1.31.1, < 2.0)
|
77
|
-
rubocop-rails (2.
|
82
|
+
rubocop-rails (2.29.1)
|
78
83
|
activesupport (>= 4.2.0)
|
79
84
|
rack (>= 1.1)
|
80
85
|
rubocop (>= 1.52.0, < 2.0)
|
81
86
|
rubocop-ast (>= 1.31.1, < 2.0)
|
82
|
-
rubocop-rspec (3.0
|
87
|
+
rubocop-rspec (3.4.0)
|
83
88
|
rubocop (~> 1.61)
|
84
89
|
rubocop-rspec_rails (2.30.0)
|
85
90
|
rubocop (~> 1.61)
|
86
91
|
rubocop-rspec (~> 3, >= 3.0.1)
|
87
|
-
rubocop-sorbet (0.8.
|
92
|
+
rubocop-sorbet (0.8.7)
|
88
93
|
rubocop (>= 1)
|
89
94
|
ruby-progressbar (1.13.0)
|
90
|
-
securerandom (0.
|
95
|
+
securerandom (0.4.1)
|
96
|
+
standard (1.44.0)
|
97
|
+
language_server-protocol (~> 3.17.0.2)
|
98
|
+
lint_roller (~> 1.0)
|
99
|
+
rubocop (~> 1.70.0)
|
100
|
+
standard-custom (~> 1.0.0)
|
101
|
+
standard-performance (~> 1.6)
|
102
|
+
standard-custom (1.0.2)
|
103
|
+
lint_roller (~> 1.0)
|
104
|
+
rubocop (~> 1.50)
|
105
|
+
standard-performance (1.6.0)
|
106
|
+
lint_roller (~> 1.1)
|
107
|
+
rubocop-performance (~> 1.23.0)
|
91
108
|
thor (1.3.2)
|
92
109
|
tzinfo (2.0.6)
|
93
110
|
concurrent-ruby (~> 1.0)
|
94
|
-
unicode-display_width (
|
111
|
+
unicode-display_width (3.1.4)
|
112
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
113
|
+
unicode-emoji (4.0.4)
|
114
|
+
uri (1.0.2)
|
95
115
|
|
96
116
|
PLATFORMS
|
97
117
|
arm64-darwin-22
|
@@ -114,6 +134,7 @@ DEPENDENCIES
|
|
114
134
|
rubocop-rspec
|
115
135
|
rubocop-rspec_rails
|
116
136
|
rubocop-sorbet
|
137
|
+
standard
|
117
138
|
|
118
139
|
BUNDLED WITH
|
119
|
-
2.
|
140
|
+
2.6.3
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
25
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
26
26
|
`git ls-files -z`.split("\x0")
|
27
|
-
|
27
|
+
.reject { |f| f.match(%r{^(test|spec|features)/}) }
|
28
28
|
end
|
29
29
|
spec.require_paths = ['lib']
|
30
30
|
|
@@ -38,4 +38,5 @@ Gem::Specification.new do |spec|
|
|
38
38
|
spec.add_dependency 'rubocop-rspec'
|
39
39
|
spec.add_dependency 'rubocop-rspec_rails'
|
40
40
|
spec.add_dependency 'rubocop-sorbet'
|
41
|
+
spec.add_dependency 'standard'
|
41
42
|
end
|
data/lib/version.rb
CHANGED
data/rubocop.yml
CHANGED
@@ -8,6 +8,10 @@ require:
|
|
8
8
|
- rubocop-factory_bot
|
9
9
|
- rubocop-capybara
|
10
10
|
- rubocop-rspec_rails
|
11
|
+
- standard
|
12
|
+
|
13
|
+
inherit_gem:
|
14
|
+
standard: config/base.yml
|
11
15
|
|
12
16
|
AllCops:
|
13
17
|
DisplayCopNames: true
|
@@ -83,3 +87,28 @@ Metrics/ParameterLists:
|
|
83
87
|
|
84
88
|
Gemspec/RequiredRubyVersion:
|
85
89
|
Enabled: false
|
90
|
+
|
91
|
+
Naming/BlockForwarding:
|
92
|
+
EnforcedStyle: explicit
|
93
|
+
|
94
|
+
Layout/SpaceInsideHashLiteralBraces:
|
95
|
+
EnforcedStyle: space
|
96
|
+
|
97
|
+
Style/ArgumentsForwarding:
|
98
|
+
UseAnonymousForwarding: false
|
99
|
+
|
100
|
+
Layout/ExtraSpacing:
|
101
|
+
Enabled: true
|
102
|
+
AllowForAlignment: true
|
103
|
+
AllowBeforeTrailingComments: true
|
104
|
+
ForceEqualSignAlignment: false
|
105
|
+
|
106
|
+
Style/RescueStandardError:
|
107
|
+
EnforcedStyle: explicit
|
108
|
+
|
109
|
+
Style/SingleLineMethods:
|
110
|
+
Enabled: true
|
111
|
+
AllowIfMethodIsEmpty: true
|
112
|
+
|
113
|
+
Style/EmptyMethod:
|
114
|
+
EnforcedStyle: compact
|
metadata
CHANGED
@@ -1,14 +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.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DashBrains
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-08 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rubocop
|
@@ -150,6 +149,20 @@ dependencies:
|
|
150
149
|
- - ">="
|
151
150
|
- !ruby/object:Gem::Version
|
152
151
|
version: '0'
|
152
|
+
- !ruby/object:Gem::Dependency
|
153
|
+
name: standard
|
154
|
+
requirement: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - ">="
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0'
|
159
|
+
type: :runtime
|
160
|
+
prerelease: false
|
161
|
+
version_requirements: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - ">="
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
153
166
|
description: Shared Rubocop config used at DashBrains
|
154
167
|
email:
|
155
168
|
- contact@dashbrains.dev
|
@@ -182,7 +195,6 @@ metadata:
|
|
182
195
|
homepage_uri: https://github.com/DashBrains/rubocop-config
|
183
196
|
source_code_uri: https://github.com/DashBrains/rubocop-config
|
184
197
|
rubygems_mfa_required: 'true'
|
185
|
-
post_install_message:
|
186
198
|
rdoc_options: []
|
187
199
|
require_paths:
|
188
200
|
- lib
|
@@ -197,8 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
197
209
|
- !ruby/object:Gem::Version
|
198
210
|
version: '0'
|
199
211
|
requirements: []
|
200
|
-
rubygems_version: 3.
|
201
|
-
signing_key:
|
212
|
+
rubygems_version: 3.6.2
|
202
213
|
specification_version: 4
|
203
214
|
summary: Rubocop config for DashBrains
|
204
215
|
test_files: []
|