Merge pull request #13497 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-sorbet-0.6.11

build(deps): bump rubocop-sorbet from 0.6.10 to 0.6.11 in /Library/Homebrew
This commit is contained in:
Rylan Polster 2022-07-01 01:27:01 -04:00 committed by GitHub
commit 94fd7c5d63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
39 changed files with 9 additions and 4 deletions

View File

@ -145,7 +145,7 @@ GEM
rubocop (>= 1.7.0, < 2.0)
rubocop-rspec (2.11.1)
rubocop (~> 1.19)
rubocop-sorbet (0.6.10)
rubocop-sorbet (0.6.11)
rubocop (>= 0.90.0)
ruby-macho (3.0.0)
ruby-progressbar (1.11.0)

View File

@ -6,6 +6,7 @@
module RuboCop; end
module RuboCop::Cop; end
RuboCop::Cop::IgnoredPattern = RuboCop::Cop::AllowedPattern
module RuboCop::Cop::Sorbet; end
class RuboCop::Cop::Sorbet::AllowIncompatibleOverride < ::RuboCop::Cop::Cop

View File

@ -90,7 +90,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-1.31.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-performance-1.14.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rails-2.15.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rspec-2.11.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-sorbet-0.6.10/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-sorbet-0.6.11/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-macho-3.0.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov-html-0.12.3/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov_json_formatter-0.1.4/lib"

View File

@ -25,6 +25,7 @@ Layout/ClassStructure:
Enabled: true
ExpectedOrder:
- module_inclusion
- constants
- macros
- public_attribute_macros
- protected_attribute_macros
@ -34,7 +35,6 @@ Layout/ClassStructure:
- protected_methods
- private_methods
- public_class_methods
- constants
Layout/ClosingParenthesisIndentation:
Enabled: true
@ -129,6 +129,7 @@ Layout/ParameterAlignment:
Layout/RedundantLineBreak:
Enabled: true
InspectBlocks: true
Layout/SpaceAfterColon:
Enabled: true
@ -231,6 +232,9 @@ Sorbet/ValidSigil:
## Style
Style/BlockDelimiters:
Enabled: true
Style/ClassAndModuleChildren:
Enabled: true
EnforcedStyle: compact

View File

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