Skip to content

Commit 2d04ba9

Browse files
committed
Shell: Disable SC2329
This function is never invoked. Check usage (or ignored if invoked indirectly). https://www.shellcheck.net/wiki/SC2329
1 parent b0b28a3 commit 2d04ba9

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

.shellrc/aliases.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# shellcheck disable=SC2139
2+
# shellcheck disable=SC2139,SC2329
33

44
declare -r SCRIPTS_DIR="${HOME}/git/lindhe/scripts"
55

.shellrc/functions.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env bash
22
# vim: set foldmethod=marker filetype=bash:
3+
# shellcheck disable=SC2329
34

45
# Copy path to current working directory
56
cwd() {

.shellrc/kubernetes.sh

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

34
######################### Populate KUBECONFIG #########################
45
if command -v kubectl &> /dev/null; then

.shellrc/server.sh

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

34
declare -A DISALLOWED_TMUX_TERMINALS=(
45
[tmux]=1

.shellrc/wsl.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env bash
22
# vim: foldmethod=marker
3+
# shellcheck disable=SC2329
34

45
if [[ -n ${WSLENV+x} ]]; then
56

0 commit comments

Comments
 (0)