standard 1.31.0 → 1.31.1

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: ed9d8bcfe3ac362a7371e45f1460af0c7e10528328c49bf79852daac2d5a6880
4
- data.tar.gz: 2106f514b963f0f4d0c870ce3b6f1d61a7bdbf4f167b68fd822407ceecf703cd
3
+ metadata.gz: 002e91f1a7cc58f3bb2134d4195d2ad5be941842ce37374ddfddac9c5b7a975c
4
+ data.tar.gz: 3025493f6232f3619cda1ef5b3df3f5b295e3dc0987b1c973980e2cd27c000cf
5
5
  SHA512:
6
- metadata.gz: f9a652688f8884d60dde7ece37d1a99a99b2415382c90115fa2b7d14c990df7a9216296889f7291197c07f946c53415a10767f4a742b6420c13b1a98b5cebc64
7
- data.tar.gz: e062a288a4231346f87e35d6c130f4ce80369f590bc7caeaa74ffce548e8ac98121c5b4873e4d2f840d7c992850fe66769547c83e055a0b25e74ee43eec3b2a6
6
+ metadata.gz: a684388cf7f73ccb34252d06a4917a503f6d18f5c891bc65b265182a5da2ef7942ff6a4e2a305a2e12335395912e7fd065d0d342b69f2eb1fa3b52498e507a4f
7
+ data.tar.gz: 36c3b05697342e8df9ec59a2a21f8aced1f28bbc5dc46ceaa0d7521a0beb162211644e7ba40377a2ac7d8c0d1044dd834dabf1d3da6a6e8377a4b091a2fb9afd
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /tmp/
9
9
  /dont_call_it_tmp/
10
10
  /vendor/
11
+ /.tool-versions
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.31.1
4
+
5
+ * Updates rubocop to [1.52.2](https://github.com/rubocop/rubocop/releases/tag/v1.52.2)
6
+
3
7
  ## 1.31.0
4
8
 
5
9
  * Updates standard-performance to [v1.2.0](https://github.com/standardrb/standard-performance/releases/tag/v1.2.0)
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.31.0)
4
+ standard (1.31.1)
5
5
  language_server-protocol (~> 3.17.0.2)
6
6
  lint_roller (~> 1.0)
7
- rubocop (~> 1.56.0)
7
+ rubocop (~> 1.56.2)
8
8
  standard-custom (~> 1.0.0)
9
9
  standard-performance (~> 1.2)
10
10
 
@@ -32,7 +32,7 @@ GEM
32
32
  rake (13.0.6)
33
33
  regexp_parser (2.8.1)
34
34
  rexml (3.2.6)
35
- rubocop (1.56.0)
35
+ rubocop (1.56.2)
36
36
  base64 (~> 0.1.1)
37
37
  json (~> 2.3)
38
38
  language_server-protocol (>= 3.17.0)
data/README.md CHANGED
@@ -465,10 +465,12 @@ inherit_gem:
465
465
  Here are a few examples of Ruby Standard-compliant teams & projects:
466
466
 
467
467
  * [Test Double](https://testdouble.com/agency)
468
+ * [AlchemyCMS](https://alchemy-cms.com)
468
469
  * [Amazon Web Services](https://aws.amazon.com/)
469
470
  * [Arrows](https://arrows.to/)
470
471
  * [Avo Admin](https://avohq.io/)
471
472
  * [Babylist](https://www.babylist.com/)
473
+ * [BLISH](https://blish.cloud)
472
474
  * [Brand New Box](https://brandnewbox.com)
473
475
  * [Brave Software](https://github.com/brave-intl/publishers)
474
476
  * [Collective Idea](https://collectiveidea.com/)
data/config/base.yml CHANGED
@@ -1788,7 +1788,8 @@ Style/UnlessElse:
1788
1788
  Enabled: true
1789
1789
 
1790
1790
  Style/UnlessLogicalOperators:
1791
- Enabled: false
1791
+ Enabled: true
1792
+ EnforcedStyle: forbid_mixed_logical_operators
1792
1793
 
1793
1794
  Style/UnpackFirst:
1794
1795
  Enabled: true
@@ -27,7 +27,10 @@ module Standard
27
27
  @writer.write(id: request[:id], result: Proto::Interface::InitializeResult.new(
28
28
  capabilities: Proto::Interface::ServerCapabilities.new(
29
29
  document_formatting_provider: true,
30
- diagnostic_provider: true,
30
+ diagnostic_provider: LanguageServer::Protocol::Interface::DiagnosticOptions.new(
31
+ inter_file_dependencies: false,
32
+ workspace_diagnostics: false
33
+ ),
31
34
  text_document_sync: Proto::Interface::TextDocumentSyncOptions.new(
32
35
  change: Proto::Constant::TextDocumentSyncKind::FULL,
33
36
  open_close: true
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.31.0")
2
+ VERSION = Gem::Version.new("1.31.1")
3
3
  end
data/standard.gemspec CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.require_paths = ["lib"]
24
24
  spec.metadata["rubygems_mfa_required"] = "true"
25
25
 
26
- spec.add_dependency "rubocop", "~> 1.56.0"
26
+ spec.add_dependency "rubocop", "~> 1.56.2"
27
27
 
28
28
  spec.add_dependency "lint_roller", "~> 1.0"
29
29
  spec.add_dependency "standard-custom", "~> 1.0.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.31.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-08-19 00:00:00.000000000 Z
11
+ date: 2023-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.56.0
19
+ version: 1.56.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.56.0
26
+ version: 1.56.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: lint_roller
29
29
  requirement: !ruby/object:Gem::Requirement