mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-09-03 23:50:53 +02:00
do it my way, modernize cmake
build dynamic lib use makefile wrapper to test all use cases include clang-tidy config file prevent clang-tidy warnings
This commit is contained in:
parent
eedcb6f24e
commit
79060d4af6
10 changed files with 128 additions and 50 deletions
26
.clang-tidy
Normal file
26
.clang-tidy
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
Checks: "-*,\
|
||||
boost-*,\
|
||||
cert-*,\
|
||||
clang-analyzer-*,\
|
||||
cppcoreguidelines-*,\
|
||||
-cppcoreguidelines-macro-usage,\
|
||||
-cppcoreguidelines-owning-memory,\
|
||||
-hicpp-*,\
|
||||
misc-*,\
|
||||
-misc-non-private-member-variables-in-classes,\
|
||||
-modernize-*,\
|
||||
-modernize-use-trailing-return-type,\
|
||||
performance-*,\
|
||||
portability-*,\
|
||||
readability-*,\
|
||||
-*magic-numbers,\
|
||||
-*avoid-c-arrays,\
|
||||
"
|
||||
WarningsAsErrors: ''
|
||||
HeaderFilterRegex: '.*'
|
||||
AnalyzeTemporaryDtors: false
|
||||
FormatStyle: file
|
||||
User: clausklein
|
||||
...
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue