Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
C++ project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASTRON Templates
C++ project
Merge requests
!5
Wrong formatting settings clang-tidy in C++ template project
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Wrong formatting settings clang-tidy in C++ template project
CWG-48-fix_clang-tidy
into
main
Overview
13
Commits
3
Pipelines
4
Changes
3
2 unresolved threads
Hide all comments
Merged
Hannes Feldt
requested to merge
CWG-48-fix_clang-tidy
into
main
2 years ago
Overview
13
Commits
3
Pipelines
4
Changes
3
2 unresolved threads
Hide all comments
Expand
Closes
CWG-48
0
0
Merge request reports
Compare
main
version 2
89ff1995
2 years ago
version 1
1fe6aa99
2 years ago
main (base)
and
latest version
latest version
e3911dc8
3 commits,
2 years ago
version 2
89ff1995
2 commits,
2 years ago
version 1
1fe6aa99
1 commit,
2 years ago
3 files
+
32
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
.clang-tidy
+
10
−
7
Options
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:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.EnumCase
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
value: camelBack
- key: readability-identifier-naming.MemberCase
value: CamelCase
- key: readability-identifier-naming.MemberCase
value: lower_case
- key: readability-identifier-naming.ParameterCase
value: CamelCase
- key: readability-identifier-naming.UnionCase
value: CamelCase
value: lower_case
- key: readability-identifier-naming.VariableCase
value:
CamelC
ase
value:
lower_c
ase
Loading