brew vendor-gems: commit updates.

This commit is contained in:
BrewTestBot 2022-06-30 18:15:34 +00:00
parent a44cc26577
commit 3e510ad4ed
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
37 changed files with 7 additions and 3 deletions

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