Skip to content

Commit 63d5054

Browse files
committed
test(lint): disable bogus lint alerts
1 parent 30bfd78 commit 63d5054

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

scripts/copy_line.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ end_of_line_in_copy_mode() {
7878

7979
yank_to_clipboard() {
8080
if tmux_is_at_least 2.4; then
81+
# shellcheck disable=SC2119
8182
tmux send -X copy-pipe-and-cancel "$(clipboard_copy_command)"
8283
else
8384
tmux send-key "$(yank_wo_newline_key)"

scripts/copy_pane_pwd.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ display_notice() {
1616

1717
main() {
1818
local copy_command
19+
# shellcheck disable=SC2119
1920
copy_command="$(clipboard_copy_command)"
2021
# $copy_command below should not be quoted
2122
pane_current_path | tr -d '\n' | $copy_command

scripts/helpers.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!bash
2+
# shellcheck disable=SC2239
23

34
yank_line="y"
45
yank_line_option="@yank_line"

0 commit comments

Comments
 (0)