diff --git a/.rubocop_todo/layout/line_end_string_concatenation_indentation.yml b/.rubocop_todo/layout/line_end_string_concatenation_indentation.yml
index 5654e48bea5a382c9b0f714ce53bd6d92bb75a13..c06e0b75a3f9da2d889940761ef31742b9c8e8a5 100644
--- a/.rubocop_todo/layout/line_end_string_concatenation_indentation.yml
+++ b/.rubocop_todo/layout/line_end_string_concatenation_indentation.yml
@@ -63,12 +63,6 @@ Layout/LineEndStringConcatenationIndentation:
     - 'app/graphql/types/project_type.rb'
     - 'app/graphql/types/query_type.rb'
     - 'app/graphql/types/root_storage_statistics_type.rb'
-    - 'app/graphql/types/user_interface.rb'
-    - 'app/graphql/types/work_items/widgets/time_tracking/timelog_input_type.rb'
-    - 'app/helpers/application_settings_helper.rb'
-    - 'app/helpers/members_helper.rb'
-    - 'app/helpers/projects/project_members_helper.rb'
-    - 'app/helpers/storage_helper.rb'
     - 'app/helpers/tags_helper.rb'
     - 'app/helpers/tree_helper.rb'
     - 'app/helpers/visibility_level_helper.rb'
diff --git a/app/graphql/types/work_items/widgets/time_tracking/timelog_input_type.rb b/app/graphql/types/work_items/widgets/time_tracking/timelog_input_type.rb
index acf4aaed79a98dbf4142b6aea572653fb85bf010..82589812b329e2893f2a6e17e5911e3d7b9e6aa1 100644
--- a/app/graphql/types/work_items/widgets/time_tracking/timelog_input_type.rb
+++ b/app/graphql/types/work_items/widgets/time_tracking/timelog_input_type.rb
@@ -14,7 +14,7 @@ class TimelogInputType < BaseInputObject
           argument :spent_at, Types::TimeType,
             required: false,
             description: 'Timestamp of when the time tracked was spent at, ' \
-                         'if not provided would be set to current timestamp.'
+              'if not provided would be set to current timestamp.'
 
           argument :summary, GraphQL::Types::String,
             required: false,
diff --git a/app/helpers/application_settings_helper.rb b/app/helpers/application_settings_helper.rb
index 1ebff2a375f647ed002e55a200e825623b37fd0d..1ee886b4a7682ba584e202de5425dd460253d37c 100644
--- a/app/helpers/application_settings_helper.rb
+++ b/app/helpers/application_settings_helper.rb
@@ -76,15 +76,15 @@ def restricted_level_checkboxes(form)
     restricted_visibility_levels_help_text = {
       Gitlab::VisibilityLevel::PUBLIC => s_(
         'AdminSettings|If selected, only administrators are able to create public groups, projects, ' \
-        'and snippets. Also, profiles are only visible to authenticated users.'
+          'and snippets. Also, profiles are only visible to authenticated users.'
       ),
       Gitlab::VisibilityLevel::INTERNAL => s_(
         'AdminSettings|If selected, only administrators are able to create internal groups, projects, and ' \
-        'snippets.'
+          'snippets.'
       ),
       Gitlab::VisibilityLevel::PRIVATE => s_(
         'AdminSettings|If selected, only administrators are able to create private groups, projects, and ' \
-        'snippets.'
+          'snippets.'
       )
     }
 
@@ -162,7 +162,7 @@ def repository_storages_options_json
 
   def external_authorization_description
     s_("ExternalAuthorization|Access to projects is validated on an external service "\
-        "using their classification label.")
+      "using their classification label.")
   end
 
   def external_authorization_allow_token_help_text
@@ -171,7 +171,7 @@ def external_authorization_allow_token_help_text
 
   def external_authorization_timeout_help_text
     s_("ExternalAuthorization|Period GitLab waits for a response from the external "\
-        "service. If there is no response, access is denied. Default: 0.5 seconds.")
+      "service. If there is no response, access is denied. Default: 0.5 seconds.")
   end
 
   def external_authorization_url_help_text
@@ -182,17 +182,17 @@ def external_authorization_url_help_text
 
   def external_authorization_client_certificate_help_text
     s_("ExternalAuthorization|Certificate used to authenticate with the external authorization service. "\
-        "If blank, the server certificate is validated when accessing over HTTPS.")
+      "If blank, the server certificate is validated when accessing over HTTPS.")
   end
 
   def external_authorization_client_key_help_text
     s_("ExternalAuthorization|Private key of client authentication certificate. "\
-        "Encrypted when stored.")
+      "Encrypted when stored.")
   end
 
   def external_authorization_client_pass_help_text
     s_("ExternalAuthorization|Passphrase required to decrypt the private key. "\
-        "Encrypted when stored.")
+      "Encrypted when stored.")
   end
 
   def external_authorization_client_url_help_text
diff --git a/app/helpers/members_helper.rb b/app/helpers/members_helper.rb
index 600e5f06c61838eb4f4991f273e7f59c5298f9e7..7e5e14291de4274ade9fe491ab436ce7373bf90c 100644
--- a/app/helpers/members_helper.rb
+++ b/app/helpers/members_helper.rb
@@ -32,7 +32,7 @@ def remove_member_message(member, user: nil)
 
   def leave_confirmation_message(member_source)
     "Are you sure you want to leave the " \
-    "\"#{member_source.human_name}\" #{member_source.model_name.to_s.humanize(capitalize: false)}?"
+      "\"#{member_source.human_name}\" #{member_source.model_name.to_s.humanize(capitalize: false)}?"
   end
 
   def member_path(member)
diff --git a/app/helpers/projects/project_members_helper.rb b/app/helpers/projects/project_members_helper.rb
index 8909edab055a3e8da361c709535024c80c0b1636..d9bb03c2185372d200d84557d8f8c6515b4f373a 100644
--- a/app/helpers/projects/project_members_helper.rb
+++ b/app/helpers/projects/project_members_helper.rb
@@ -10,9 +10,9 @@ def project_member_header_subtext(project)
       share_project_description(project)
     else
       ERB::Util.html_escape(_("Members can be added by project " \
-                  "%{i_open}Maintainers%{i_close} or %{i_open}Owners%{i_close}")) % {
-                    i_open: '<i>'.html_safe, i_close: '</i>'.html_safe
-                  }
+        "%{i_open}Maintainers%{i_close} or %{i_open}Owners%{i_close}")) % {
+          i_open: '<i>'.html_safe, i_close: '</i>'.html_safe
+        }
     end
   end
 
diff --git a/app/helpers/storage_helper.rb b/app/helpers/storage_helper.rb
index 669d13c14c286cf8bd11309ff673755f5cb84afa..ea8ee023c53bfc8d5cb9ea239c90d027be0cf21a 100644
--- a/app/helpers/storage_helper.rb
+++ b/app/helpers/storage_helper.rb
@@ -23,8 +23,8 @@ def storage_counters_details(statistics)
 
     _(
       "Repository: %{counter_repositories} / Wikis: %{counter_wikis} / Build Artifacts: %{counter_build_artifacts} / " \
-      "Pipeline Artifacts: %{counter_pipeline_artifacts} / LFS: %{counter_lfs_objects} / " \
-      "Snippets: %{counter_snippets} / Packages: %{counter_packages} / Uploads: %{counter_uploads}"
+        "Pipeline Artifacts: %{counter_pipeline_artifacts} / LFS: %{counter_lfs_objects} / " \
+        "Snippets: %{counter_snippets} / Packages: %{counter_packages} / Uploads: %{counter_uploads}"
     ) % counters
   end
 end