mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
fixtures/rubocop@x.x.x.rbi
: fix style.
At least for me locally: `brew style` complains about this and `brew style --fix` autocorrects it.
This commit is contained in:
parent
3e0b0c1b32
commit
607ffafd9f
@ -11,11 +11,11 @@ class Parser::Source::Range
|
|||||||
include ::RuboCop::Ext::Range
|
include ::RuboCop::Ext::Range
|
||||||
end
|
end
|
||||||
|
|
||||||
RuboCop::CLI::STATUS_OFFENSES = T.let(T.unsafe(nil), Integer)
|
RuboCop::CLI::STATUS_OFFENSES = T.let(T.unsafe(nil).freeze, Integer)
|
||||||
|
|
||||||
RuboCop::CLI::STATUS_SUCCESS = T.let(T.unsafe(nil), Integer)
|
RuboCop::CLI::STATUS_SUCCESS = T.let(T.unsafe(nil).freeze, Integer)
|
||||||
|
|
||||||
RuboCop::CommentConfig::CONFIG_DISABLED_LINE_RANGE_MIN = T.let(T.unsafe(nil), Float)
|
RuboCop::CommentConfig::CONFIG_DISABLED_LINE_RANGE_MIN = T.let(T.unsafe(nil).freeze, Float)
|
||||||
|
|
||||||
class RuboCop::Config
|
class RuboCop::Config
|
||||||
include ::RuboCop::PathUtil
|
include ::RuboCop::PathUtil
|
||||||
@ -73,6 +73,6 @@ module RuboCop::Version
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
VERSION = "x.x.x"
|
VERSION = "x.x.x".freeze
|
||||||
|
|
||||||
SOME_CONSTANT = "some constant value"
|
SOME_CONSTANT = "some constant value".freeze
|
||||||
|
Loading…
x
Reference in New Issue
Block a user