mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
ac4278970c
This adds a tool that checks style (currently just for tabs instead of spaces in files under include/tests/docs) and produces a travis-ci build failure if any problems are found.
20 lines
439 B
Bash
Executable File
20 lines
439 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Script to check include/test code for common pybind11 code style errors.
|
|
# Currently just checks for tabs used instead of spaces.
|
|
#
|
|
# Invoke as: tools/check-style.sh
|
|
#
|
|
|
|
found=0
|
|
for f in `grep $'\t' include/ tests/ docs/*.rst -rl`; do
|
|
if [ "$found" -eq 0 ]; then
|
|
echo -e '\e[31m\e[01mError: found tabs instead of spaces in the following files:\e[0m'
|
|
found=1
|
|
fi
|
|
|
|
echo " $f"
|
|
done
|
|
|
|
exit $found
|