Initial work in making it compatible with Epsilon

This commit is contained in:
2021-07-13 21:39:50 +02:00
parent 8bc6cfc269
commit e8daa65e6c
7 changed files with 199 additions and 2 deletions

11
.clang-tidy Normal file
View File

@@ -0,0 +1,11 @@
Checks: 'readability-*,clang-diagnostic-*,clang-analyzer-*,-clang-analyzer-alpha*,performance-*,cppcoreguidelines-*,
bugprone-*,modernize-*,-modernize-use-trailing-return-type'
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.PrivateMemberCase
value: camelBack
- key: readability-identifier-naming.PrivateMemberPrefix
value: '_'