Merge pull request #10877 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-sorbet-0.6.1

build(deps): bump rubocop-sorbet from 0.6.0 to 0.6.1 in /Library/Homebrew
This commit is contained in:
Bo Anderson 2021-03-18 14:39:34 +00:00 committed by GitHub
commit 05f1c37ae0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
32 changed files with 7 additions and 5 deletions

View File

@ -129,7 +129,7 @@ GEM
rubocop-rspec (2.2.0)
rubocop (~> 1.0)
rubocop-ast (>= 1.1.0)
rubocop-sorbet (0.6.0)
rubocop-sorbet (0.6.1)
rubocop
ruby-macho (2.5.0)
ruby-progressbar (1.11.0)

View File

@ -85,7 +85,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-1.11.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-performance-1.10.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rails-2.9.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rspec-2.2.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-sorbet-0.6.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-sorbet-0.6.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-macho-2.5.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/sorbet-runtime-stub-0.2.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/thor-1.1.0/lib"

View File

@ -70,7 +70,9 @@ Sorbet/ForbidSuperclassConstLiteral:
Description: 'Forbid superclasses which are non-literal constants.'
Enabled: false
VersionAdded: 0.2.0
VersionChanged: 0.5.0
VersionChanged: 0.6.1
Exclude:
- db/migrate/*.rb
Sorbet/ForbidUntypedStructProps:
Description: >-
@ -99,7 +101,7 @@ Sorbet/KeywordArgumentOrdering:
Enabled: true
VersionAdded: 0.2.0
Sorbet/OnedAncestorPerLine:
Sorbet/OneAncestorPerLine:
Description: 'Enforces one ancestor per call to requires_ancestor'
Enabled: false
VersionAdded: '0.6.0'

View File

@ -1,6 +1,6 @@
# frozen_string_literal: true
module RuboCop
module Sorbet
VERSION = "0.6.0"
VERSION = "0.6.1"
end
end