forked from rubocop/rubocop-rspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalign_right_let_brace.rb
49 lines (42 loc) · 1.12 KB
/
align_right_let_brace.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true
module RuboCop
module Cop
module RSpec
# Checks that right braces for adjacent single line lets are aligned.
#
# @example
# # bad
# let(:foobar) { blahblah }
# let(:baz) { bar }
# let(:a) { b }
#
# # good
# let(:foobar) { blahblah }
# let(:baz) { bar }
# let(:a) { b }
#
class AlignRightLetBrace < Base
extend AutoCorrector
MSG = 'Align right let brace'
def self.autocorrect_incompatible_with
[Layout::ExtraSpacing]
end
def on_new_investigation
super
return if processed_source.blank?
token_aligner.offending_tokens.each do |let|
add_offense(let.loc.end) do |corrector|
corrector.insert_before(
let.loc.end, token_aligner.indent_for(let)
)
end
end
end
private
def token_aligner
RuboCop::RSpec::AlignLetBrace.new(processed_source.ast, :end)
end
end
end
end
end