Merge pull request #31732 from koic/enable_autocorrect_for_lint_end_alignment_cop

Enable autocorrect for `Lint/EndAlignment` cop
This commit is contained in:
Matthew Draper 2018-01-19 17:49:21 +10:30 committed by GitHub
commit acbcef6094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 19 additions and 15 deletions

@ -26,6 +26,9 @@ Layout/CaseIndentation:
Layout/CommentIndentation:
Enabled: true
Layout/ElseAlignment:
Enabled: true
Layout/EmptyLineAfterMagicComment:
Enabled: true
@ -140,6 +143,7 @@ Style/UnneededPercentQ:
Lint/EndAlignment:
Enabled: true
EnforcedStyleAlignWith: variable
AutoCorrect: true
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
Lint/RequireParentheses:

@ -83,7 +83,7 @@ def transmit(message)
when Numeric then @driver.text(message.to_s)
when String then @driver.text(message)
when Array then @driver.binary(message)
else false
else false
end
end

@ -274,7 +274,7 @@ def port
def standard_port
case protocol
when "https://" then 443
else 80
else 80
end
end

@ -116,7 +116,7 @@ def distance_of_time_in_words(from_time, to_time = 0, options = {})
when 10..19 then locale.t :less_than_x_seconds, count: 20
when 20..39 then locale.t :half_a_minute
when 40..59 then locale.t :less_than_x_minutes, count: 1
else locale.t :x_minutes, count: 1
else locale.t :x_minutes, count: 1
end
when 2...45 then locale.t :x_minutes, count: distance_in_minutes
@ -131,7 +131,7 @@ def distance_of_time_in_words(from_time, to_time = 0, options = {})
when 43200...86400 then locale.t :about_x_months, count: (distance_in_minutes.to_f / 43200.0).round
# 60 days up to 365 days
when 86400...525600 then locale.t :x_months, count: (distance_in_minutes.to_f / 43200.0).round
else
else
from_year = from_time.year
from_year += 1 if from_time.month >= 3
to_year = to_time.year

@ -38,7 +38,7 @@ def create_database(name, options = {})
" TABLESPACE = \"#{value}\""
when :connection_limit
" CONNECTION LIMIT = #{value}"
else
else
""
end
end

@ -165,7 +165,7 @@ def normalize_keys(params)
Hash[params.map { |k, v| [k.to_s.tr("-", "_"), normalize_keys(v)] } ]
when Array
params.map { |v| normalize_keys(v) }
else
else
params
end
end
@ -178,7 +178,7 @@ def deep_to_h(value)
process_array(value)
when String
value
else
else
raise "can't typecast #{value.class.name} - #{value.inspect}"
end
end

@ -670,7 +670,7 @@ def to_constant_name(desc) #:nodoc:
when Module
desc.name ||
raise(ArgumentError, "Anonymous modules have no name to be referenced by")
else raise TypeError, "Not a valid constant descriptor: #{desc.inspect}"
else raise TypeError, "Not a valid constant descriptor: #{desc.inspect}"
end
end

@ -61,7 +61,7 @@ def deprecated_method_warning(method_name, message = nil)
case message
when Symbol then "#{warning} (use #{message} instead)"
when String then "#{warning} (#{message})"
else warning
else warning
end
end

@ -227,7 +227,7 @@ def clear(scope = :all)
case scope
when :all
@plurals, @singulars, @uncountables, @humans = [], [], Uncountables.new, []
else
else
instance_variable_set "@#{scope}", []
end
end

@ -350,7 +350,7 @@ def ordinal(number)
when 1; "st"
when 2; "nd"
when 3; "rd"
else "th"
else "th"
end
end
end

@ -276,7 +276,7 @@ def normalize(string, form = nil)
reorder_characters(decompose(:compatibility, codepoints))
when :kc
compose(reorder_characters(decompose(:compatibility, codepoints)))
else
else
raise ArgumentError, "#{form} is not a valid normalization variant", caller
end.pack("U*".freeze)
end

@ -238,7 +238,7 @@ def [](arg)
when Numeric, ActiveSupport::Duration
arg *= 3600 if arg.abs <= 13
all.find { |z| z.utc_offset == arg.to_i }
else
else
raise ArgumentError, "invalid argument to TimeZone[]: #{arg.inspect}"
end
end

@ -75,7 +75,7 @@ def field_type
when :date then :date_select
when :text then :text_area
when :boolean then :check_box
else
else
:text_field
end
end
@ -91,7 +91,7 @@ def default
when :text then "MyText"
when :boolean then false
when :references, :belongs_to then nil
else
else
""
end
end