Skip to content

Commit c4b0dc7

Browse files
authored
Add shellcheck style checking (pybind#3114)
1 parent cd061ae commit c4b0dc7

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.pre-commit-config.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ repos:
9595
exclude: ".supp$"
9696
args: ["-L", "nd,ot,thist"]
9797

98+
- repo: https://github.com/shellcheck-py/shellcheck-py
99+
rev: v0.7.2.1
100+
hooks:
101+
- id: shellcheck
102+
98103
# The original pybind11 checks for a few C++ style items
99104
- repo: local
100105
hooks:

tools/check-style.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ check_style_errors=0
1616
IFS=$'\n'
1717

1818

19-
found="$(grep '\<\(if\|for\|while\|catch\)(\|){' $@ -rn --color=always)"
19+
found="$(grep '\<\(if\|for\|while\|catch\)(\|){' "$@" -rn --color=always)"
2020
if [ -n "$found" ]; then
2121
echo -e '\033[31;01mError: found the following coding style problems:\033[0m'
2222
check_style_errors=1
23-
echo "$found" | sed -e 's/^/ /'
23+
echo "${found//^/ /}"
2424
fi
2525

2626
found="$(awk '
@@ -34,7 +34,7 @@ last && /^\s*{/ {
3434
last=""
3535
}
3636
{ last = /(if|for|while|catch|switch)\s*\(.*\)\s*$/ ? $0 : "" }
37-
' $(find include -type f) $@)"
37+
' "$(find include -type f)" "$@")"
3838
if [ -n "$found" ]; then
3939
check_style_errors=1
4040
echo -e '\033[31;01mError: braces should occur on the same line as the if/while/.. statement. Found issues in the following files:\033[0m'

0 commit comments

Comments
 (0)