mirror of
https://github.com/valitydev/grafanalib.git
synced 2024-11-06 10:15:24 +00:00
14 lines
302 B
Bash
Executable File
14 lines
302 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Lint all shell files in given directories with `shellcheck`.
|
|
#
|
|
# e.g.
|
|
# $ shell-lint infra k8s
|
|
#
|
|
# Depends on:
|
|
# - shellcheck
|
|
# - files-with-type
|
|
# - file >= 5.22
|
|
|
|
"$(dirname "${BASH_SOURCE[0]}")/files-with-type" text/x-shellscript "$@" | xargs --no-run-if-empty shellcheck
|