Skip to content
Snippets Groups Projects
Commit 75c686ae authored by Hannes Feldt's avatar Hannes Feldt
Browse files

Merge branch 'CWG-48-fix_clang-tidy' into 'main'

Wrong formatting settings clang-tidy in C++ template project

Closes CWG-48

See merge request !5
parents 5d672b71 12700413
No related branches found
No related tags found
1 merge request!5Wrong formatting settings clang-tidy in C++ template project
Pipeline #46585 passed
Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-const-correctness,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-misc-no-recursion,readability-identifier-naming' Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-const-correctness,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-misc-no-recursion,readability-identifier-naming,readability-braces-around-statements'
CheckOptions: CheckOptions:
- key: readability-identifier-naming.ClassCase - key: readability-identifier-naming.ClassCase
value: CamelCase value: CamelCase
- key: readability-identifier-naming.EnumCase - key: readability-identifier-naming.EnumCase
value: CamelCase value: CamelCase
- key: readability-identifier-naming.UnionCase
value: CamelCase
# Within ASTRON no specific casing is used. We suggest to use
# these settings, but feel free to adjust following casings
# for existing projects or personal/team preferences.
- key: readability-identifier-naming.FunctionCase - key: readability-identifier-naming.FunctionCase
value: camelBack
- key: readability-identifier-naming.MemberCase
value: CamelCase value: CamelCase
- key: readability-identifier-naming.MemberCase
value: lower_case
- key: readability-identifier-naming.ParameterCase - key: readability-identifier-naming.ParameterCase
value: CamelCase value: lower_case
- key: readability-identifier-naming.UnionCase
value: CamelCase
- key: readability-identifier-naming.VariableCase - key: readability-identifier-naming.VariableCase
value: CamelCase value: lower_case
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
indent_size = 4
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
[{CMakeLists.txt,*.cmake,*.rst}]
indent_size = 2
indent_style = space
build/ build/
.vscode/ .vscode/
cmake-build-debug/
.idea/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment