Allow comment after if/unless clause

Signed-off-by: NRémy Coutable <remy@rymai.me>
上级 2b8eb727
......@@ -95,7 +95,7 @@ module RuboCop
end
def end_clause_line?(line)
line =~ /^\s*(rescue|else|elsif|when)/
line =~ /^\s*(#|rescue|else|elsif|when)/
end
def begin_line?(line)
......
......@@ -256,6 +256,18 @@ describe RuboCop::Cop::LineBreakAroundConditionalBlock do
expect(cop.offenses).to be_empty
end
it "doesn't flag violation for #{conditional} followed by a comment" do
source = <<~RUBY
#{conditional} condition
do_something
end
# a short comment
RUBY
inspect_source(source)
expect(cop.offenses).to be_empty
end
it "doesn't flag violation for #{conditional} followed by an end" do
source = <<~RUBY
class Foo
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册