Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/scripts/generate-release-contributors.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#!/bin/bash -e

# shellcheck disable=SC2016
# shellcheck disable=SC2086

# this should be run on the release branch

# NOTE if you need to run this script locally, you will need to first:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/build-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,3 @@ jobs:

markdown-lint-check:
uses: ./.github/workflows/reusable-markdown-lint.yml

shell-script-check:
uses: ./.github/workflows/reusable-shell-script-check.yml
19 changes: 0 additions & 19 deletions .github/workflows/reusable-shell-script-check.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .mise/tasks/lint/.shellcheckrc

This file was deleted.

3 changes: 0 additions & 3 deletions .mise/tasks/lint/links-in-modified-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ if [ "$usage_head" = "''" ]; then
fi

# Check if lychee config was modified
# shellcheck disable=SC2086
# - because usage_head may be empty
config_modified=$(git diff --name-only --merge-base "$usage_base" $usage_head \
| grep -E '^(\.github/config/lychee\.toml|\.mise/tasks/lint/.*|mise\.toml)$' || true)
Expand All @@ -23,7 +22,6 @@ if [ -n "$config_modified" ] ; then
else
# Using lychee's default extension filter here to match when it runs against all files
# Note: --diff-filter=d filters out deleted files
# shellcheck disable=SC2086
# - because usage_head may be empty
modified_files=$(git diff --name-only --diff-filter=d "$usage_base" $usage_head \
| grep -E '\.(md|mkd|mdx|mdown|mdwn|mkdn|mkdown|markdown|html|htm|txt)$' \
Expand All @@ -34,7 +32,6 @@ else
exit 0
fi

# shellcheck disable=SC2086
mise run lint:links $modified_files
fi

1 change: 0 additions & 1 deletion .mise/tasks/lint/links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ for f in $usage_file; do
echo "Checking links in file: $f"
done

# shellcheck disable=SC2086
lychee --verbose --config .github/config/lychee.toml $usage_file
1 change: 0 additions & 1 deletion .mise/tasks/lint/local-links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ for f in $usage_file; do
echo "Checking links in file: $f"
done

# shellcheck disable=SC2086
lychee --verbose --scheme file --include-fragments --config .github/config/lychee.toml $usage_file