-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1339 from Sphereserver/dev
Merge Dev into master
- Loading branch information
Showing
392 changed files
with
12,912 additions
and
7,685 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
ExcludeHeaderFilterRegex: ^.*(lib\/).* | ||
|
||
Checks: > | ||
#-*, | ||
# Enable groups: | ||
bugprone-*, | ||
cppcoreguidelines-*, | ||
clang-analyzer-*, | ||
##hicpp-*, | ||
misc-*, | ||
modernize-*, | ||
performance-*, | ||
portability-*, | ||
readability-*, | ||
# Disable specific checks/warnings: | ||
-clang-analyzer-security.insecureAPI.strcpy, | ||
-cppcoreguidelines-avoid-c-arrays, | ||
-cppcoreguidelines-avoid-goto, | ||
-cppcoreguidelines-avoid-magic-numbers, | ||
-cppcoreguidelines-no-malloc, | ||
-cppcoreguidelines-init-variables, # false positives | ||
-cppcoreguidelines-owning-memory, | ||
-cppcoreguidelines-prefer-member-initializer, | ||
-cppcoreguidelines-pro-bounds-array-pointer-decay, | ||
-cppcoreguidelines-pro-bounds-pointer-arithmetic, | ||
-cppcoreguidelines-pro-bounds-constant-array-index, | ||
-cppcoreguidelines-pro-type-const-cast, # we have some instances, and we should remove them... | ||
-cppcoreguidelines-pro-type-vararg, | ||
-cppcoreguidelines-pro-type-union-access, | ||
##-hicpp-use-auto, #duplicate | ||
##-hicpp-braces-around-statements, | ||
##-hicpp-vararg, #duplicate | ||
-misc-include-cleaner, | ||
-modernize-avoid-c-arrays, | ||
-modernize-use-auto, | ||
-modernize-use-trailing-return-type, | ||
-modernize-loop-convert, | ||
-readability-braces-around-statements, | ||
-readability-delete-null-pointer, | ||
-readability-else-after-return, | ||
-readability-function-cognitive-complexity, | ||
-readability-identifier-length, | ||
-readability-identifier-naming, | ||
-readability-implicit-bool-conversion, | ||
-readability-magic-numbers, | ||
-readability-misleading-indentation, # to be enabled after the source is properly formatted | ||
-readability-simplify-boolean-expr, | ||
-readability-uppercase-literal-suffix, | ||
##-misc-non-private-member-variables-in-classes, | ||
##-readability-named-parameter, | ||
##-readability-braces-around-statements, | ||
##-readability-magic-numbers | ||
# Turn all the warnings from the checks above into errors. | ||
#WarningsAsErrors: "*" | ||
|
||
CheckOptions: | ||
- key: 'clang-analyzer-core.NonNullParamChecker:assert_like_macro' | ||
value: 'DEBUG_ASSERT,ASSERT,PERSISTANT_ASSERT' | ||
- key: 'clang-analyzer-config:noreturn_function' | ||
value: 'RaiseImmediateAbort,RaiseRecoverableAbort' | ||
- { key: readability-identifier-naming.NamespaceCase, value: lower_case } | ||
- { key: readability-identifier-naming.ClassCase, value: CamelCase } | ||
- { key: readability-identifier-naming.StructCase, value: CamelCase } | ||
- { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase } | ||
- { key: readability-identifier-naming.FunctionCase, value: camelBack } | ||
- { key: readability-identifier-naming.VariableCase, value: camelBack } # lower_case | ||
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m_ } | ||
- { key: readability-identifier-naming.ProtectedMemberPrefix, value: m_ } | ||
- { key: readability-identifier-naming.MacroDefinitionCase, value: UPPER_CASE } | ||
- { key: readability-identifier-naming.EnumConstantCase, value: UPPER_CASE} | ||
#- { key: readability-identifier-naming.EnumConstantPrefix, value: k } | ||
- { key: readability-identifier-naming.ScopedEnumConstantCase, value: CamelCase } | ||
- { key: readability-identifier-naming.ScopedEnumConstantPrefix, value: k } | ||
- { key: readability-identifier-naming.ConstexprVariableCase, value: CamelCase } | ||
- { key: readability-identifier-naming.ConstexprVariablePrefix, value: k } | ||
- { key: readability-identifier-naming.GlobalConstantCase, value: CamelCase } | ||
- { key: readability-identifier-naming.GlobalConstantPrefix, value: k } | ||
- { key: readability-identifier-naming.MemberConstantCase, value: CamelCase } | ||
- { key: readability-identifier-naming.MemberConstantPrefix, value: k } | ||
- { key: readability-identifier-naming.StaticConstantCase, value: CamelCase } | ||
- { key: readability-identifier-naming.StaticConstantPrefix, value: k } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
CompileFlags: | ||
Add: | ||
# Exclude the following folders from the source code analysis. | ||
- -I!.codelite | ||
- -I!.ctagsd | ||
- -I!.git | ||
- -I!.github | ||
- -I!.kdev4 | ||
- -I!.vscode | ||
- -I!build | ||
- -I!cmake | ||
- -I!lib | ||
- -I!utilities | ||
|
||
# If: | ||
# PathMatch: '.*/src/common/common\.h' | ||
# Diagnostics: | ||
# Suppress: ['-Wunused-include-directive'] | ||
|
||
# TODO: disable clazy-non-pod-global-static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/BlankSpruce/gersemi/master/gersemi/configuration.schema.json | ||
|
||
cache: false | ||
color: false | ||
definitions: [] | ||
indent: 4 | ||
line_length: 120 | ||
list_expansion: favour-inlining | ||
quiet: false | ||
unsafe: false | ||
warn_about_unknown_commands: false | ||
workers: 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.