Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverguenther committed Dec 4, 2024
1 parent 515f923 commit 8f698c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def button_links
]
end

def action_menu
def action_menu # rubocop:disable Metrics/AbcSize
render(Primer::Alpha::ActionMenu.new) do |menu|
menu.with_show_button(icon: "kebab-horizontal",
"aria-label": "More",
Expand Down
2 changes: 1 addition & 1 deletion modules/meeting/app/controllers/meetings_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def copy
end
end

def destroy
def destroy # rubocop:disable Metrics/AbcSize
recurring = @meeting.recurring_meeting

# rubocop:disable Rails/ActionControllerFlashBeforeRender
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@

meeting_containers = page
.all("[data-test-selector^='op-meeting-container-']")
.map { |container| container["data-test-selector"] }
.map { |container| container["data-test-selector"] } # rubocop:disable Rails/Pluck
expect(meeting_containers).to contain_exactly("op-meeting-container-#{first_meeting.id}",
"op-meeting-container-#{second_meeting.id}")
end
Expand Down

0 comments on commit 8f698c0

Please sign in to comment.