1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-06-10 11:12:21 +00:00
conky/bin/check-style.sh

13 lines
378 B
Bash
Raw Normal View History

#!/bin/bash
set -euxo pipefail
DIR="$( dirname "${BASH_SOURCE[0]}" )"
# Run clang-tidy only for the lines of code which have changed.
git diff -U0 $TRAVIS_COMMIT_RANGE | \
$DIR/clang-tidy-diff.py -p1 \
-checks=*,-clang-analyzer-alpha.* \
-quiet \
-- \
-warnings-as-errors=*,-clang-analyzer-alpha.* \
-format-style='{BasedOnStyle: google, IndentWidth: 2}'