Browse Source

Relax version warning in clang-format precommit hook

Closes #60778.
Rémi Verschelde 3 years ago
parent
commit
9e66a947e4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misc/hooks/pre-commit-clang-format

+ 1 - 1
misc/hooks/pre-commit-clang-format

@@ -77,7 +77,7 @@ fi
 # To get consistent formatting, we recommend contributors to use the same
 # clang-format version as CI.
 RECOMMENDED_CLANG_FORMAT_MAJOR_MIN="12"
-RECOMMENDED_CLANG_FORMAT_MAJOR_MAX="13"
+RECOMMENDED_CLANG_FORMAT_MAJOR_MAX="14"
 
 if [ ! -x "$CLANG_FORMAT" ] ; then
 	message="Error: clang-format executable not found. Please install clang-format $RECOMMENDED_CLANG_FORMAT_MAJOR_MAX."