mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Fix haml lint Rubocop Style/RedundantStringCoercion
cop (#25975)
This commit is contained in:
parent
2a9063e36a
commit
5096deb818
2 changed files with 5 additions and 5 deletions
|
@ -1,13 +1,13 @@
|
||||||
# This configuration was generated by
|
# This configuration was generated by
|
||||||
# `haml-lint --auto-gen-config`
|
# `haml-lint --auto-gen-config`
|
||||||
# on 2023-07-11 23:58:05 +0200 using Haml-Lint version 0.48.0.
|
# on 2023-07-13 11:24:52 -0400 using Haml-Lint version 0.48.0.
|
||||||
# The point is for the user to remove these configuration records
|
# The point is for the user to remove these configuration records
|
||||||
# one by one as the lints are removed from the code base.
|
# one by one as the lints are removed from the code base.
|
||||||
# Note that changes in the inspected code, or installation of new
|
# Note that changes in the inspected code, or installation of new
|
||||||
# versions of Haml-Lint, may require this file to be generated again.
|
# versions of Haml-Lint, may require this file to be generated again.
|
||||||
|
|
||||||
linters:
|
linters:
|
||||||
# Offense count: 94
|
# Offense count: 93
|
||||||
RuboCop:
|
RuboCop:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
- content_for :page_title do
|
- content_for :page_title do
|
||||||
= t("imports.titles.#{@bulk_import.type.to_s}")
|
= t("imports.titles.#{@bulk_import.type}")
|
||||||
|
|
||||||
- if @bulk_import.likely_mismatched?
|
- if @bulk_import.likely_mismatched?
|
||||||
.flash-message.warning= t("imports.mismatched_types_warning")
|
.flash-message.warning= t("imports.mismatched_types_warning")
|
||||||
|
|
||||||
- if @bulk_import.overwrite?
|
- if @bulk_import.overwrite?
|
||||||
%p.hint= t("imports.overwrite_preambles.#{@bulk_import.type.to_s}_html", filename: @bulk_import.original_filename, total_items: @bulk_import.total_items)
|
%p.hint= t("imports.overwrite_preambles.#{@bulk_import.type}_html", filename: @bulk_import.original_filename, total_items: @bulk_import.total_items)
|
||||||
- else
|
- else
|
||||||
%p.hint= t("imports.preambles.#{@bulk_import.type.to_s}_html", filename: @bulk_import.original_filename, total_items: @bulk_import.total_items)
|
%p.hint= t("imports.preambles.#{@bulk_import.type}_html", filename: @bulk_import.original_filename, total_items: @bulk_import.total_items)
|
||||||
|
|
||||||
.simple_form
|
.simple_form
|
||||||
.actions
|
.actions
|
||||||
|
|
Loading…
Reference in a new issue