Files
system76-embedded-controller/scripts/lint/indent.sh
2021-05-07 12:44:48 -06:00

7 lines
193 B
Bash
Executable File

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0-only
# Check files do not use tabs for indentation
git ls-files '*.[c\|h\|rs\|sh]' | xargs grep --line-number $'^\s*\t' && exit 1
exit 0