This is an automated email from the ASF dual-hosted git repository.
hulk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/kvrocks-website.git
The following commit(s) were added to refs/heads/main by this push:
new b91e885 Add clang tidy auto fix command in contributing (#129)
b91e885 is described below
commit b91e885ed9d6d7198dd5a85b50cee46ff6d10fd0
Author: Twice <[email protected]>
AuthorDate: Thu Jul 13 10:07:06 2023 +0800
Add clang tidy auto fix command in contributing (#129)
---
community/contributing.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/community/contributing.md b/community/contributing.md
index c82401a..4204d10 100644
--- a/community/contributing.md
+++ b/community/contributing.md
@@ -32,7 +32,7 @@ In addition to the source code listed above, the rest of the
repository consists
### Code style
-If your patch contains changes to C++ code, make sure you format the code
using Clang Format (`./x.py format` to quickly format all code). In addition,
after you submit your patch, the CI (currently [GitHub
Actions](https://github.com/apache/kvrocks/actions)) will perform some checks
using Clang Tidy to ensure that the code follows some good patterns (modern
C++) and without some security issues. So if the CI reports a problem, you can
check the CI logs or run Clang Tidy locally (`./x.py [...]
+If your patch contains changes to C++ code, make sure you format the code
using Clang Format (`./x.py format` to quickly format all code). In addition,
after you submit your patch, the CI (currently [GitHub
Actions](https://github.com/apache/kvrocks/actions)) will perform some checks
using Clang Tidy to ensure that the code follows some good patterns (modern
C++) and without some security issues. So if the CI reports a problem, you can
check the CI logs or run Clang Tidy locally (`./x.py [...]
### Tests