Update dependency DannyBen/bashly to v1.3.2 #156
linters.yml
on: pull_request
yamllint
18s
shellcheck
8s
shfmt
5s
markdownlint
29s
bashly
16s
Annotations
1 error and 12 warnings
|
shfmt:
src/lib/colors.sh#L14
[shfmt] reported by reviewdog 🐶
Raw Output:
src/lib/colors.sh:14:-## terminal being interactive (TTY), call `enable_auto_colors` in your
src/lib/colors.sh:14:+## terminal being interactive (TTY), call `enable_auto_colors` in your
|
|
shellcheck
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|
|
shfmt
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|
|
shfmt
Unexpected input(s) 'reporter', valid inputs are ['github_token', 'workdir', 'level', 'filter_mode', 'fail_on_error', 'reviewdog_flags', 'shfmt_flags']
|
|
bashly:
keencli#L3059
[bashly] reported by reviewdog 🐶
Raw Output:
keencli:3059:- run "$@"
keencli:3061:+ run "${command_line_args[@]}"
|
|
bashly:
keencli#L3058
[bashly] reported by reviewdog 🐶
Raw Output:
keencli:3058:+ # :command.start
keencli:3059:+ command_line_args=("$@")
|
|
bashly:
keencli#L1528
[bashly] reported by reviewdog 🐶
Raw Output:
keencli:1528:- if [[ -v args['request_data'] && -n $(validate_json "${args['request_data']:-}") ]]; then
keencli:1529:- printf "validation error in %s:\n%s\n" "REQUEST_DATA" "$(validate_json "${args['request_data']:-}")" >&2
keencli:1527:+ validation_output="$(validate_json "${args['request_data']:-}")"
keencli:1528:+ if [[ -v args['request_data'] && -n "$validation_output" ]]; then
keencli:1529:+ printf "validation error in %s:\n%s\n" "REQUEST_DATA" "$validation_output" >&2
|
|
bashly:
keencli#L769
[bashly] reported by reviewdog 🐶
Raw Output:
keencli:769:-
|
|
bashly:
keencli#L6
[bashly] reported by reviewdog 🐶
Raw Output:
keencli:6:-if [[ "${BASH_VERSINFO:-0}" -lt 4 ]]; then
keencli:7:- printf "bash version 4 or higher is required\n" >&2
keencli:6:+if ((BASH_VERSINFO[0] < 4 || (BASH_VERSINFO[0] == 4 && BASH_VERSINFO[1] < 2))); then
keencli:7:+ printf "bash version 4.2 or higher is required\n" >&2
|
|
bashly:
keencli#L2
[bashly] reported by reviewdog 🐶
Raw Output:
keencli:2:-# This script was generated by bashly 1.2.12 (https://bashly.dev)
keencli:2:+# This script was generated by bashly 1.3.2 (https://bashly.dev)
|
|
bashly
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|
|
yamllint
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|
|
markdownlint
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|