Skip to content

Commit c6c5976

Browse files
committedMar 26, 2023
update project files
1 parent d13ffd5 commit c6c5976

File tree

4 files changed

+251
-31
lines changed

4 files changed

+251
-31
lines changed
 

‎.clang-format

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# Generated from CLion C/C++ Code Style settings
22
BasedOnStyle: LLVM
3-
AccessModifierOffset: -4
3+
AccessModifierOffset: -2
44
AlignAfterOpenBracket: Align
5-
AlignConsecutiveAssignments: false
6-
AlignOperands: true
5+
AlignConsecutiveAssignments: None
6+
AlignOperands: DontAlign
77
AllowAllArgumentsOnNextLine: false
88
AllowAllConstructorInitializersOnNextLine: false
99
AllowAllParametersOfDeclarationOnNextLine: false
1010
AllowShortBlocksOnASingleLine: Always
11-
AllowShortCaseLabelsOnASingleLine: false
11+
AllowShortCaseLabelsOnASingleLine: true
1212
AllowShortFunctionsOnASingleLine: All
1313
AllowShortIfStatementsOnASingleLine: Always
1414
AllowShortLambdasOnASingleLine: All
1515
AllowShortLoopsOnASingleLine: true
1616
AlwaysBreakAfterReturnType: None
17-
AlwaysBreakTemplateDeclarations: Yes
17+
AlwaysBreakTemplateDeclarations: MultiLine
1818
BreakBeforeBraces: Custom
1919
BraceWrapping:
2020
AfterCaseLabel: false
@@ -28,20 +28,19 @@ BraceWrapping:
2828
BeforeElse: false
2929
IndentBraces: false
3030
SplitEmptyFunction: false
31-
SplitEmptyRecord: true
32-
BreakBeforeBinaryOperators: None
31+
SplitEmptyRecord: false
32+
BreakBeforeBinaryOperators: NonAssignment
3333
BreakBeforeTernaryOperators: true
34-
BreakConstructorInitializers: BeforeComma
34+
BreakConstructorInitializers: BeforeColon
3535
BreakInheritanceList: BeforeComma
3636
ColumnLimit: 0
3737
CompactNamespaces: true
38-
ContinuationIndentWidth: 8
39-
FixNamespaceComments: true
40-
IndentCaseLabels: true
38+
ContinuationIndentWidth: 4
39+
IndentCaseLabels: false
4140
IndentPPDirectives: None
42-
IndentWidth: 4
41+
IndentWidth: 2
4342
KeepEmptyLinesAtTheStartOfBlocks: true
44-
MaxEmptyLinesToKeep: 2
43+
MaxEmptyLinesToKeep: 1
4544
NamespaceIndentation: All
4645
ObjCSpaceAfterProperty: false
4746
ObjCSpaceBeforeProtocolList: true

‎.clang-tidy

+86-7
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,17 @@
1616
Checks: >-
1717
-*,
1818
clang-diagnostic-*,
19+
-clang-diagnostic-error,
1920
llvm-*,
21+
-llvm-header-guard,
2022
misc-*,
2123
-misc-unused-parameters,
2224
-misc-non-private-member-variables-in-classes,
25+
modernize*,
26+
-modernize-use-trailing-return-type,
27+
-modernize-use-equals-default,
28+
-modernize-avoid-c-arrays,
29+
readability,
2330
-google-readability-namespace-comments,
2431
-readability-identifier-naming
2532
-readability-redundant-access-specifiers
@@ -31,16 +38,88 @@ Checks: >-
3138
# check if the users would override this file, e.g. via a command-line arg.
3239
CheckOptions:
3340
- key: readability-identifier-naming.ClassCase
34-
value: CamelCase
41+
value: lower_case
3542
- key: readability-identifier-naming.EnumCase
36-
value: CamelCase
43+
value: UPPER_CASE
3744
- key: readability-identifier-naming.FunctionCase
38-
value: camelBack
45+
value: lower_case
3946
- key: readability-identifier-naming.MemberCase
40-
value: CamelCase
47+
value: lower_case
4148
- key: readability-identifier-naming.ParameterCase
42-
value: CamelCase
49+
value: lower_case
4350
- key: readability-identifier-naming.UnionCase
44-
value: CamelCase
51+
value: lower_case
4552
- key: readability-identifier-naming.VariableCase
46-
value: CamelCase
53+
value: lower_case
54+
55+
# REF
56+
#Checks: >-
57+
# *,
58+
# -llvm-*,
59+
# -llvmlibc-*,
60+
# -altera-*,
61+
# -android-*,
62+
# -boost-*,
63+
# -darwin-*,
64+
# -fuchsia-*,
65+
# -linuxkernel-*,
66+
# -objc-*,
67+
# -portability-*,
68+
# -zircon-*,
69+
# -clang-analyzer-osx*,
70+
# -clang-analyzer-optin.cplusplus.UninitializedObject,
71+
# -clang-analyzer-optin.cplusplus.VirtualCall,
72+
# -clang-analyzer-core.NullDereference,
73+
# -clang-analyzer-cplusplus.NewDelete,
74+
# -clang-analyzer-cplusplus.PlacementNew,
75+
# -clang-analyzer-cplusplus.NewDeleteLeaks,
76+
# -clang-analyzer-cplusplus.Move,
77+
# -clang-diagnostic-unused-parameter,
78+
# -cppcoreguidelines-*,
79+
# cppcoreguidelines-explicit-virtual-functions,
80+
# cppcoreguidelines-special-member-functions,
81+
# -cert-err58-cpp,
82+
# -cert-env33-c,
83+
# -cert-dcl37-c,
84+
# -cert-dcl51-cpp,
85+
# -google-runtime-int,
86+
# -google-readability-casting,
87+
# -google-readability-function-size,
88+
# -google-readability-todo,
89+
# -google-readability-braces-around-statements,
90+
# -google-build-using-namespace,
91+
# -readability-magic-numbers,
92+
# -readability-implicit-bool-conversion,
93+
# -readability-function-cognitive-complexity,
94+
# -readability-isolate-declaration,
95+
# -readability-convert-member-functions-to-static,
96+
# -readability-container-size-empty,
97+
# -readability-function-size,
98+
# -readability-qualified-auto,
99+
# -readability-make-member-function-const,
100+
# -readability-named-parameter,
101+
# -modernize-use-trailing-return-type,
102+
# -modernize-avoid-c-arrays,
103+
# -modernize-use-nullptr,
104+
# -modernize-replace-disallow-copy-and-assign-macro,
105+
# -modernize-use-bool-literals,
106+
# -modernize-use-equals-default,
107+
# -modernize-use-default-member-init,
108+
# -modernize-use-auto,
109+
# -modernize-loop-convert,
110+
# -modernize-deprecated-headers,
111+
# -modernize-raw-string-literal,
112+
# -misc-no-recursion,
113+
# -misc-unused-parameters,
114+
# -misc-redundant-expression,
115+
# -misc-non-private-member-variables-in-classes,
116+
# -hicpp-*,
117+
# hicpp-exception-baseclass,
118+
# -performance-no-int-to-ptr,
119+
# -bugprone-easily-swappable-parameters,
120+
# -bugprone-implicit-widening-of-multiplication-result,
121+
# -bugprone-integer-division,
122+
# -bugprone-exception-escape,
123+
# -bugprone-reserved-identifier,
124+
# -bugprone-branch-clone,
125+
# -bugprone-narrowing-conversions,

‎.editorconfig

+49-10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
14
root = true
25

36
[*]
@@ -24,20 +27,15 @@ trim_trailing_whitespace = false
2427
insert_final_newline = false
2528
ij_any_wrap_long_lines = true
2629

27-
[*.{md, markdown, mkd}]
30+
[*.{md,markdown,mkd}]
31+
# double whitespace at end of line
32+
# denotes a line break in Markdown
2833
indent_size = 4
2934
indent_style = tab
3035
trim_trailing_whitespace = false
3136
insert_final_newline = false
3237

33-
[*.{sh, bash, zsh}]
34-
indent_size = 2
35-
indent_style = tab
36-
tab_width = 2
37-
trim_trailing_whitespace = false
38-
insert_final_newline = false
39-
40-
[*.{h,hh,hpp,hxx,c,cc,cpp,cxx,inl}]
38+
[*.{h,hh,hpp,hxx,c,cc,cpp,cxx,inl,ixx,mxx,cppm}]
4139
indent_size = 4
4240
indent_style = space
4341
tab_width = 4
@@ -46,6 +44,18 @@ tab_width = 4
4644
indent_size = 4
4745
indent_style = tab
4846

47+
[go.{sum,mod,work}]
48+
indent_style = tab
49+
indent_size = 4
50+
51+
[*.rb]
52+
indent_size = 4
53+
indent_style = tab
54+
55+
[Vagrantfile]
56+
indent_size = 4
57+
indent_style = tab
58+
4959
[{*.har,*.jsb2,*.jsb3,*.json,.babelrc,.eslintrc,.stylelintrc,bowerrc,jest.config}]
5060
indent_size = 2
5161
indent_style = space
@@ -59,6 +69,35 @@ indent_size = 4
5969
indent_style = tab
6070
indent_size = 4
6171

62-
[*.{Makefile, mak}]
72+
[*.{Makefile,mak,mk,make,cmake}]
73+
indent_style = tab
74+
indent_size = 4
75+
76+
[*.{sh,bash,zsh,fish}]
77+
indent_size = 2
78+
indent_style = tab
79+
tab_width = 2
80+
trim_trailing_whitespace = false
81+
insert_final_newline = false
82+
83+
[*.toml]
84+
indent_style = space
85+
indent_size = 4
86+
trim_trailing_whitespace = true
87+
insert_final_newline = true
88+
89+
[*.{js,jsx}]
90+
indent_size = 2
91+
indent_style = space
92+
93+
[*.{S,s,ASM,asm,gas,mac,inc}]
94+
indent_size = 4
95+
indent_style = tab
96+
97+
[*.rs]
98+
indent_style = tab
99+
indent_size = 4
100+
101+
[*.{l,ll,lex,y,yy,yacc,yxx,hxx,lxx}]
63102
indent_style = tab
64103
indent_size = 4

‎.vscode/settings.json

+104-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,107 @@
11
{
22
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
3-
"terminal.integrated.allowMnemonics": true
3+
4+
"files.exclude": {
5+
"**/cmake-build-*/": true
6+
},
7+
8+
"C_Cpp.maxCachedProcesses": 1,
9+
"C_Cpp.codeAnalysis.clangTidy.enabled": true,
10+
"C_Cpp.maxConcurrentThreads": 2,
11+
"C_Cpp.codeAnalysis.exclude": {
12+
"**/bin/": true,
13+
"**/build/": true,
14+
"**/cmake-build-*/": true,
15+
"**/ref/": true,
16+
"**/sav/": true,
17+
"**/SAVE/": true,
18+
"**/docs/": true,
19+
"**/manual/": true,
20+
"**/install/": true
21+
},
22+
23+
"terminal.integrated.allowMnemonics": true,
24+
"files.associations": {
25+
"__bit_reference": "cpp",
26+
"__bits": "cpp",
27+
"__config": "cpp",
28+
"__debug": "cpp",
29+
"__errc": "cpp",
30+
"__hash_table": "cpp",
31+
"__locale": "cpp",
32+
"__mutex_base": "cpp",
33+
"__node_handle": "cpp",
34+
"__nullptr": "cpp",
35+
"__split_buffer": "cpp",
36+
"__string": "cpp",
37+
"__threading_support": "cpp",
38+
"__tree": "cpp",
39+
"__tuple": "cpp",
40+
"any": "cpp",
41+
"array": "cpp",
42+
"atomic": "cpp",
43+
"bit": "cpp",
44+
"bitset": "cpp",
45+
"cctype": "cpp",
46+
"chrono": "cpp",
47+
"clocale": "cpp",
48+
"cmath": "cpp",
49+
"codecvt": "cpp",
50+
"compare": "cpp",
51+
"complex": "cpp",
52+
"concepts": "cpp",
53+
"condition_variable": "cpp",
54+
"cstdarg": "cpp",
55+
"cstddef": "cpp",
56+
"cstdint": "cpp",
57+
"cstdio": "cpp",
58+
"cstdlib": "cpp",
59+
"cstring": "cpp",
60+
"ctime": "cpp",
61+
"cwchar": "cpp",
62+
"cwctype": "cpp",
63+
"deque": "cpp",
64+
"exception": "cpp",
65+
"forward_list": "cpp",
66+
"fstream": "cpp",
67+
"future": "cpp",
68+
"initializer_list": "cpp",
69+
"iomanip": "cpp",
70+
"ios": "cpp",
71+
"iosfwd": "cpp",
72+
"iostream": "cpp",
73+
"istream": "cpp",
74+
"limits": "cpp",
75+
"list": "cpp",
76+
"locale": "cpp",
77+
"map": "cpp",
78+
"memory": "cpp",
79+
"mutex": "cpp",
80+
"new": "cpp",
81+
"numbers": "cpp",
82+
"numeric": "cpp",
83+
"optional": "cpp",
84+
"ostream": "cpp",
85+
"queue": "cpp",
86+
"random": "cpp",
87+
"ratio": "cpp",
88+
"semaphore": "cpp",
89+
"set": "cpp",
90+
"sstream": "cpp",
91+
"stack": "cpp",
92+
"stdexcept": "cpp",
93+
"streambuf": "cpp",
94+
"string": "cpp",
95+
"string_view": "cpp",
96+
"system_error": "cpp",
97+
"tuple": "cpp",
98+
"type_traits": "cpp",
99+
"typeindex": "cpp",
100+
"typeinfo": "cpp",
101+
"unordered_map": "cpp",
102+
"unordered_set": "cpp",
103+
"variant": "cpp",
104+
"vector": "cpp",
105+
"algorithm": "cpp"
106+
}
4107
}

0 commit comments

Comments
 (0)
Please sign in to comment.