9042bbae9a
* chore(deps-dev): bump prettier-plugin-sh from 0.6.1 to 0.7.1 Bumps [prettier-plugin-sh](https://github.com/rx-ts/prettier) from 0.6.1 to 0.7.1. - [Release notes](https://github.com/rx-ts/prettier/releases) - [Changelog](https://github.com/rx-ts/prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/rx-ts/prettier/compare/prettier-plugin-sh@0.6.1...prettier-plugin-sh@0.7.1) --- updated-dependencies: - dependency-name: prettier-plugin-sh dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore: reformat shell scripts Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Akash Satheesan <akash.satheesan@protonmail.com>
22 lines
631 B
Bash
Executable File
22 lines
631 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
eslint --max-warnings=0 --fix $(git ls-files "*.ts" "*.tsx" "*.js" | grep -v "lib/vscode")
|
|
stylelint $(git ls-files "*.css" | grep -v "lib/vscode")
|
|
tsc --noEmit --skipLibCheck
|
|
shellcheck -e SC2046,SC2164,SC2154,SC1091,SC1090,SC2002 $(git ls-files "*.sh" | grep -v "lib/vscode")
|
|
if command -v helm && helm kubeval --help > /dev/null; then
|
|
helm kubeval ci/helm-chart
|
|
fi
|
|
|
|
cd lib/vscode
|
|
# Run this periodically in vanilla VS code to make sure we don't add any more warnings.
|
|
yarn -s eslint --max-warnings=3
|
|
cd "$OLDPWD"
|
|
}
|
|
|
|
main "$@"
|