File tree
18 files changed
+266
-12
lines changed- 3rd
- locale
- en-us
- pt-br
- zh-cn
- zh-tw
- make
- script
- brave
- config
- core/diagnostics
- meta/bee
- proto
- provider
- service
18 files changed
+266
-12
lines changedSubmodule EmmyLuaCodeStyle updated 45 files
- .clang-format+1
- CHANGELOG.md+68-1
- CodeFormatLib/src/CodeFormatLib.cpp+110-51
- CodeFormatLib/src/LuaCodeFormat.cpp+12-5
- CodeFormatLib/src/LuaCodeFormat.h+2
- CodeFormatLib/src/Types.h+3-3
- CodeFormatServer/src/Config/ClientConfig.cpp+40-6
- CodeFormatServer/src/Config/ClientConfig.h+4-5
- CodeFormatServer/src/LSP/LSPHandle.cpp-3
- CodeFormatServer/src/Service/ConfigService.cpp+9-12
- CodeService/src/Config/LuaDiagnosticStyle.cpp+119
- CodeService/src/Config/LuaStyle.cpp+10
- CodeService/src/Diagnostic/NameStyle/NameStyleChecker.cpp+21-32
- CodeService/src/Diagnostic/NameStyle/NameStyleRuleMatcher.cpp+70-75
- CodeService/src/Format/Analyzer/AlignAnalyzer.cpp+31-25
- CodeService/src/Format/Analyzer/LineBreakAnalyzer.cpp+1-1
- README.md+1
- README_EN.md+2
- Test/src/FormatResult_unitest.cpp+10
- Test/src/FormatStyle_unitest.cpp+43-4
- Test2/src/FormatTest2.cpp+1-4
- Util/CMakeLists.txt+25-23
- Util/src/InfoTree/InfoNode.cpp+166
- Util/src/InfoTree/InfoTree.cpp+85
- docs/name_style.md+96
- docs/name_style_EN.md+95
- include/CodeService/Config/LuaDiagnosticStyle.h+5-3
- include/CodeService/Config/LuaDiagnosticStyleEnum.h-24
- include/CodeService/Config/LuaStyle.h+1
- include/CodeService/Config/LuaStyleEnum.h+6
- include/CodeService/Config/NameStyleRule.h+54
- include/CodeService/Diagnostic/CodeStyle/CodeStyleChecker.h+6-6
- include/CodeService/Diagnostic/NameStyle/NameStyleChecker.h+5-5
- include/CodeService/Diagnostic/NameStyle/NameStyleRuleMatcher.h+8-10
- include/CodeService/Format/Analyzer/AlignAnalyzer.h+3-1
- include/Util/CommandLine.h+4-7
- include/Util/FileFinder.h+2-2
- include/Util/InfoTree/InfoKind.h+10
- include/Util/InfoTree/InfoNode.h+60
- include/Util/InfoTree/InfoTree.h+44
- include/Util/StringUtil.h+3-3
- include/Util/Url.h+4-4
- include/Util/Utf8.h+2-2
- include/Util/format.h+144-188
- lua.template.editorconfig+3
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
| 3 | + | |
| 4 | + | |
| 5 | + | |
3 | 6 |
| |
4 | 7 |
| |
5 | 8 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
269 | 269 |
| |
270 | 270 |
| |
271 | 271 |
| |
| 272 | + | |
| 273 | + | |
272 | 274 |
| |
273 | 275 |
| |
274 | 276 |
| |
| |||
401 | 403 |
| |
402 | 404 |
| |
403 | 405 |
| |
| 406 | + | |
| 407 | + | |
404 | 408 |
| |
405 | 409 |
| |
406 | 410 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
269 | 269 |
| |
270 | 270 |
| |
271 | 271 |
| |
| 272 | + | |
| 273 | + | |
272 | 274 |
| |
273 | 275 |
| |
274 | 276 |
| |
| |||
401 | 403 |
| |
402 | 404 |
| |
403 | 405 |
| |
| 406 | + | |
| 407 | + | |
404 | 408 |
| |
405 | 409 |
| |
406 | 410 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
268 | 268 |
| |
269 | 269 |
| |
270 | 270 |
| |
| 271 | + | |
| 272 | + | |
271 | 273 |
| |
272 | 274 |
| |
273 | 275 |
| |
| |||
400 | 402 |
| |
401 | 403 |
| |
402 | 404 |
| |
| 405 | + | |
| 406 | + | |
403 | 407 |
| |
404 | 408 |
| |
405 | 409 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
268 | 268 |
| |
269 | 269 |
| |
270 | 270 |
| |
| 271 | + | |
| 272 | + | |
271 | 273 |
| |
272 | 274 |
| |
273 | 275 |
| |
| |||
400 | 402 |
| |
401 | 403 |
| |
402 | 404 |
| |
| 405 | + | |
| 406 | + | |
403 | 407 |
| |
404 | 408 |
| |
405 | 409 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
| 22 | + | |
22 | 23 |
| |
23 | 24 |
| |
24 | 25 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 |
| - | |
| 3 | + | |
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
| |||
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
16 | 47 |
| |
17 | 48 |
| |
18 | 49 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
385 | 385 |
| |
386 | 386 |
| |
387 | 387 |
| |
| 388 | + | |
| 389 | + | |
388 | 390 |
| |
389 | 391 |
| |
390 | 392 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + |
0 commit comments