summaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2020-03-06 12:25:39 +1000
committerGitHub <noreply@github.com>2020-03-06 12:25:39 +1000
commitfc8ba79a51a980604b787dc479196ff289252902 (patch)
tree508612579c9a742cac6f598d94b6ae991aac2ae3 /.travis
parent523d6747c3443322460fbedd65b502c25317f2dd (diff)
Remvoed the use of clang-format that does not actually block PRs or surface anything to developers #8188 (#8196)
* Remvoed the use of clang-format that does not actually block PRs or surface anything to developers * Reopen PR
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/clangformat.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/.travis/clangformat.sh b/.travis/clangformat.sh
deleted file mode 100755
index a5033a4528..0000000000
--- a/.travis/clangformat.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env bash
-
-find . -type f -name '*.[ch]' | while read filename; do echo -ne "$filename: "; diff <(clang-format -style=file $filename) $filename | wc -l; done