diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-06-17 10:39:02 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-06-17 11:27:18 -0500 |
commit | 576c9e4fe87c5bb38c84b23dcad3529f68eb4a47 (patch) | |
tree | 4d1e4d94a7ba496f1ecea42973fc371f0e7ca2d9 /.clang-tidy | |
parent | 71699e08c9df78b7203fa4ef9cede28e995d6ace (diff) | |
download | redot-engine-576c9e4fe87c5bb38c84b23dcad3529f68eb4a47.tar.gz |
CI: Add pre-commit hook for `clang-tidy`
• Set to "manual" so it isn't invoked in normal workflow
• Modernize `.clang-tidy` file
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 59 |
1 files changed, 18 insertions, 41 deletions
diff --git a/.clang-tidy b/.clang-tidy index aa5a269eac..366781cc82 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,45 +1,22 @@ --- -Checks: 'clang-diagnostic-*,clang-analyzer-*,-*,cppcoreguidelines-pro-type-member-init,modernize-redundant-void-arg,modernize-use-bool-literals,modernize-use-default-member-init,modernize-use-nullptr,readability-braces-around-statements,readability-redundant-member-init' +Checks: >- + -*, + cppcoreguidelines-pro-type-member-init, + modernize-redundant-void-arg, + modernize-use-bool-literals, + modernize-use-default-member-init, + modernize-use-nullptr, + readability-braces-around-statements, + readability-redundant-member-init WarningsAsErrors: '' -HeaderFilterRegex: '' -FormatStyle: none +HeaderFileExtensions: ['', h, hh, hpp, hxx, inc, glsl] +ImplementationFileExtensions: [c, cc, cpp, cxx, m, mm, java] +HeaderFilterRegex: (core|doc|drivers|editor|main|modules|platform|scene|servers|tests)/ +FormatStyle: file CheckOptions: - - key: cert-dcl16-c.NewSuffixes - value: 'L;LL;LU;LLU' - - key: cert-oop54-cpp.WarnOnlyIfThisHasSuspiciousField - value: '0' - - key: cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors - value: '1' - - key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic - value: '1' - - key: cppcoreguidelines-pro-type-member-init.IgnoreArrays - value: '1' - - key: cppcoreguidelines-pro-type-member-init.UseAssignment - value: '1' - - key: google-readability-function-size.StatementThreshold - value: '800' - - key: google-readability-namespace-comments.ShortNamespaceLines - value: '10' - - key: google-readability-namespace-comments.SpacesBeforeComments - value: '2' - - key: modernize-loop-convert.MaxCopySize - value: '16' - - key: modernize-loop-convert.MinConfidence - value: reasonable - - key: modernize-loop-convert.NamingStyle - value: CamelCase - - key: modernize-pass-by-value.IncludeStyle - value: llvm - - key: modernize-replace-auto-ptr.IncludeStyle - value: llvm - - key: modernize-use-bool-literals.IgnoreMacros - value: '0' - - key: modernize-use-default-member-init.IgnoreMacros - value: '0' - - key: modernize-use-default-member-init.UseAssignment - value: '1' - - key: modernize-use-nullptr.NullMacros - value: 'NULL' - - key: readability-braces-around-statements.ShortStatementLines - value: '0' + cppcoreguidelines-pro-type-member-init.IgnoreArrays: true + cppcoreguidelines-pro-type-member-init.UseAssignment: true + modernize-use-bool-literals.IgnoreMacros: false + modernize-use-default-member-init.IgnoreMacros: false + modernize-use-default-member-init.UseAssignment: true ... |