File tree Expand file tree Collapse file tree 5 files changed +400
-345
lines changed Expand file tree Collapse file tree 5 files changed +400
-345
lines changed Original file line number Diff line number Diff line change 1
1
BasedOnStyle : LLVM
2
2
IndentWidth : 4
3
- ColumnLimit : 100
3
+ ColumnLimit : 140
4
4
TabWidth : 4
5
5
UseTab : Never
6
6
BreakBeforeBraces : Allman
@@ -11,4 +11,7 @@ SpaceBeforeParens: ControlStatements
11
11
SortIncludes : true
12
12
IncludeBlocks : Regroup
13
13
ReflowComments : true
14
- Standard : Cpp23
14
+ ContinuationIndentWidth : 4
15
+ BinPackParameters : false
16
+ BinPackArguments : false
17
+
Original file line number Diff line number Diff line change 1
1
Checks : >
2
2
-*,
3
- bugprone-* ,
4
- performance-* ,
5
3
readability-* ,
6
4
modernize-* ,
7
- cppcoreguidelines-* ,
8
- portability-* ,
9
- misc-unused-* ,
10
- hicpp-* ,
11
- clang-analyzer-* ,
12
- -modernize-use-trailing-return-type
5
+ -modernize-use-trailing-return-type,
6
+ -readability-magic-numbers,
13
7
14
8
WarningsAsErrors : >
15
9
bugprone-* ,
@@ -19,8 +13,6 @@ WarningsAsErrors: >
19
13
HeaderFilterRegex : ' src/.*'
20
14
FormatStyle : file
21
15
22
- Standard : c++23
23
-
24
16
CheckOptions :
25
17
- key : modernize-use-auto.MinTypeNameLength
26
18
value : ' 5'
@@ -31,4 +23,8 @@ CheckOptions:
31
23
- key : readability-identifier-naming.MemberCase
32
24
value : lower_case
33
25
- key : readability-identifier-naming.PrivateMemberPrefix
34
- value : ' _'
26
+ value : ' _'
27
+ - key : readability-function-size.ParameterThreshold
28
+ value : ' 8'
29
+ - key : readability-braces-around-statements.ShortStatementLines
30
+ value : ' 0'
You can’t perform that action at this time.
0 commit comments