Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiddhartha Bagaria <sbagaria@grailbio.com>2020-04-03 07:34:51 +0300
committerMehdi Amini <joker.eph@gmail.com>2020-04-03 07:53:33 +0300
commit31b6e182f2ce957c86b961e21b9eb82bbcea7c59 (patch)
tree85e2bd8f839556843ae8323e9751a7e735145184 /utils/arcanist
parenta0983ed3d2c825ed959536b70e944e551fd5fc13 (diff)
Use git-clang-format as Arcanist linter
D49116 was using clang-format-diff because at the time of its writing, it needed to handle the subversion repo as well. Differential Revision: https://reviews.llvm.org/D77363
Diffstat (limited to 'utils/arcanist')
-rwxr-xr-xutils/arcanist/clang-format.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/arcanist/clang-format.sh b/utils/arcanist/clang-format.sh
index 7ba70681bc15..4fa2dd99665a 100755
--- a/utils/arcanist/clang-format.sh
+++ b/utils/arcanist/clang-format.sh
@@ -10,11 +10,11 @@ set -euo pipefail
# To skip running all linters when creating/updating a diff, use `arc diff --nolint`.
-if ! hash clang-format-diff >/dev/null; then
+if ! hash git-clang-format >/dev/null; then
# advice severity level is completely non-disruptive.
# switch to warning or error if you want to prompt the user.
echo "advice"
- echo "clang-format-diff not found in user's PATH; not linting file."
+ echo "git-clang-format not found in user's PATH; not linting file."
echo "===="
exit 0
fi
@@ -37,13 +37,13 @@ trap 'cleanup' INT HUP QUIT TERM EXIT
# Arcanist can filter out lint messages for unchanged lines, but for that, we
# need to generate line by line lint messages. Instead, we generate one lint
-# message on line 1, char 1 with file content edited using clang-format-diff.
+# message on line 1, char 1 with file content edited using git-clang-format.
if git rev-parse --git-dir >/dev/null; then
arc_base_commit=$(arc which --show-base)
# An alternative is to use git-clang-format.
- git diff -U0 --no-color "${arc_base_commit}"| clang-format-diff -style LLVM -i -p1
+ >&2 git-clang-format --quiet --force --style LLVM "${arc_base_commit}"
else
- svn diff --diff-cmd=diff -x -U0 "${src_file}" | clang-format-diff -style LLVM -i
+ >&2 echo "repo is expected to be a git directory"
fi
cp -p "${src_file}" "${formatted_file}"