Allow comment after if/unless clause
Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
parent
2b8eb7273e
commit
1c5106fadf
2 changed files with 13 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue