mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-22 20:39:49 +00:00
26207594f2
* Bring over format.sh and .clang-tidy and run it * Little fixes * Adjustments * Jenkins kick * Jenkins kick 2 * format * small fixes * Bring over new formatter by Roman Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * Force use of clang-11 * check_format * Update error messages * Fix from Tharo for python3.6 Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com> * Just use nproc to determine num jobs for check format * Update error message * AnimatedMat_DrawStepOpa texture arg -> matAnim * Fix enTwig draw prototype * Tidying up * Bring over fixes in OoT #1387 Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * Fix * Update doc tools * PR Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com>
10 lines
488 B
YAML
10 lines
488 B
YAML
Checks: '-*,readability-braces-around-statements,readability-inconsistent-declaration-parameter-name'
|
|
WarningsAsErrors: ''
|
|
HeaderFilterRegex: '(src|include)\/.*\.h$'
|
|
FormatStyle: 'file'
|
|
CheckOptions:
|
|
# Require argument names to match exactly (instead of allowing a name to be a prefix/suffix of another)
|
|
# Note: 'true' is expected by clang-tidy 12+ but '1' is used for compatibility with older versions
|
|
- key: readability-inconsistent-declaration-parameter-name.Strict
|
|
value: 1
|