Commit Graph

3 Commits

Author SHA1 Message Date
liang.he
f6fa6922de
disable the misc-no-recursion checker (#4821) 2026-02-06 08:45:31 +08:00
liang.he
33680c7649
refactor: update clang-tidy configuration for improved checks and error handling (#4811) 2026-01-28 15:01:32 +08:00
Wenyong Huang
7191ecf880
Customize clang-format coding styles based on Mozilla template (#770)
Customize clang-format coding styles for C source files based on Mozilla template.
To check whether the C source codes are well formatted:
``` bash
$ cd ${wamr-root}
$ clang-format --Werror --dry-run --style=file path/to/file
```
To format the C source codes in place
``` bash
$ cd ${wamr_root}
$ clang-format -i --style=file path/to/file
```

Signed-off-by: Wenyong Huang <wenyong.huang@intel.com>
2021-10-06 09:54:36 +08:00