mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
466ea67194
Allow them to be run from any directory. Call version from lint & test to create Package.swift with version info. Fail when accessing unset variables. Improve variable names. Fix lint issues. Improve lint & format scripts. Don't require user input to continue linting. Much cleaner lint output. Reorder lint output. Get swift-format from Brewfile instead of from Package.swift: - Speeds up linting. - Properly models dependency (not a code dependency). - swift-format depends on an old version of swift-argument-parser. Will refactor to use SAP soon. Include some improvements from 1.8.7 PR. Other scripts need improvement, too. Resolve #545 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
47 lines
1.2 KiB
Bash
Executable file
47 lines
1.2 KiB
Bash
Executable file
#!/bin/bash -eu
|
|
#
|
|
# script/format
|
|
# mas
|
|
#
|
|
# Linting checks for development and CI.
|
|
#
|
|
# Automatically formats and fixes style violations using various tools.
|
|
#
|
|
# Please keep in sync with script/lint.
|
|
#
|
|
|
|
mas_dir="$(readlink -fn "$(dirname "${BASH_SOURCE:-"${0}"}")/..")"
|
|
|
|
if ! cd -- "${mas_dir}"; then
|
|
printf $'Error: Could not cd into mas directory: %s\n' "${mas_dir}" >&2
|
|
exit 1
|
|
fi
|
|
|
|
printf $'==> 🚨 Formatting mas\n'
|
|
|
|
for LINTER in markdownlint shfmt swift-format swiftformat swiftlint; do
|
|
if [[ ! -x "$(command -v ${LINTER})" ]]; then
|
|
printf $'error: %s is not installed. Run \'script/bootstrap\' or \'brew install %s\'.\n' "${LINTER}" "${LINTER}"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
for SOURCE in Package.swift Sources Tests; do
|
|
printf -- $'--> 🕊 %s swift-format\n' "${SOURCE}"
|
|
swift-format format --in-place --recursive "${SOURCE}"
|
|
printf -- $'--> 🕊 %s swiftformat\n' "${SOURCE}"
|
|
swiftformat "${SOURCE}"
|
|
printf -- $'--> 🕊 %s swiftlint\n' "${SOURCE}"
|
|
swiftlint --fix --strict "${SOURCE}"
|
|
done
|
|
|
|
printf -- $'--> 📜 Bash shfmt\n'
|
|
shfmt \
|
|
--write \
|
|
--list \
|
|
--indent 2 \
|
|
--case-indent \
|
|
contrib/ script/
|
|
|
|
printf -- $'--> 〽️ Markdown\n'
|
|
markdownlint --config .markdownlint.json --fix .github .
|