Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3rd/EmmyLuaCodeStyle
Submodule EmmyLuaCodeStyle updated 86 files
+10 −0 CHANGELOG.md
+9 −0 CHANGELOG_EN.md
+6 −6 CodeFormat/src/LuaFormat.cpp
+8 −8 CodeFormat/src/LuaFormat.h
+4 −4 CodeFormatCore/CMakeLists.txt
+9 −1 CodeFormatCore/include/CodeFormatCore/Config/LuaStyle.h
+8 −1 CodeFormatCore/include/CodeFormatCore/Config/LuaStyleEnum.h
+1 −0 CodeFormatCore/include/CodeFormatCore/Diagnostic/DiagnosticType.h
+0 −27 CodeFormatCore/include/CodeFormatCore/Diagnostic/Spell/BasicSpellParserType.h
+7 −9 CodeFormatCore/include/CodeFormatCore/Diagnostic/Spell/CodeSpellChecker.h
+0 −39 CodeFormatCore/include/CodeFormatCore/Diagnostic/Spell/IdentifyParser.h
+0 −13 CodeFormatCore/include/CodeFormatCore/Diagnostic/Spell/TextParser.h
+51 −0 CodeFormatCore/include/CodeFormatCore/Diagnostic/Spell/Util.h
+3 −1 CodeFormatCore/include/CodeFormatCore/Format/Analyzer/FormatAnalyzerType.h
+11 −2 CodeFormatCore/include/CodeFormatCore/Format/Analyzer/FormatStrategy.h
+28 −0 CodeFormatCore/include/CodeFormatCore/Format/Analyzer/SemicolonAnalyzer.h
+3 −0 CodeFormatCore/include/CodeFormatCore/Format/FormatBuilder.h
+1 −1 CodeFormatCore/include/CodeFormatCore/RangeFormat/RangeFormatBuilder.h
+8 −13 CodeFormatCore/include/CodeFormatCore/TypeFormat/LuaTypeFormat.h
+14 −0 CodeFormatCore/include/CodeFormatCore/TypeFormat/LuaTypeFormatFeatures.h
+0 −16 CodeFormatCore/include/CodeFormatCore/TypeFormat/LuaTypeFormatOptions.h
+1 −1 CodeFormatCore/src/Config/FunctionOption.cpp
+1 −1 CodeFormatCore/src/Config/LuaEditorConfig.cpp
+15 −1 CodeFormatCore/src/Config/LuaStyle.cpp
+30 −0 CodeFormatCore/src/Diagnostic/CodeStyle/CodeStyleChecker.cpp
+26 −46 CodeFormatCore/src/Diagnostic/Spell/CodeSpellChecker.cpp
+0 −148 CodeFormatCore/src/Diagnostic/Spell/IdentifyParser.cpp
+0 −47 CodeFormatCore/src/Diagnostic/Spell/TextParser.cpp
+131 −0 CodeFormatCore/src/Diagnostic/Spell/Util.cpp
+138 −0 CodeFormatCore/src/Format/Analyzer/SemicolonAnalyzer.cpp
+40 −16 CodeFormatCore/src/Format/FormatBuilder.cpp
+2 −0 CodeFormatCore/src/Format/FormatState.cpp
+7 −6 CodeFormatCore/src/TypeFormat/LuaTypeFormat.cpp
+20 −0 CodeFormatCore/src/TypeFormat/LuaTypeFormatFeatures.cpp
+0 −20 CodeFormatCore/src/TypeFormat/LuaTypeFormatOptions.cpp
+2 −0 CodeFormatLib/src/CodeFormatLib.cpp
+9 −9 CodeFormatLib/src/LuaCodeFormat.cpp
+1 −1 CodeFormatLib/src/LuaCodeFormat.h
+1 −1 CodeFormatServer/src/LSP/LSPHandle.cpp
+17 −18 CodeFormatServer/src/LanguageServer.cpp
+8 −9 CodeFormatServer/src/LanguageServer.h
+1 −1 CodeFormatServer/src/Service/CodeActionService.cpp
+4 −0 CodeFormatServer/src/Service/DiagnosticService.cpp
+1 −1 CodeFormatServer/src/Service/FormatService.cpp
+1 −1 CodeFormatServer/src/Service/FormatService.h
+40 −52 CodeFormatServer/src/Session/IOSession.cpp
+104 −139 CodeFormatServer/src/Session/Protocol/ProtocolBuffer.cpp
+18 −19 CodeFormatServer/src/Session/Protocol/ProtocolBuffer.h
+36 −49 CodeFormatServer/src/Session/Protocol/ProtocolParser.cpp
+12 −12 CodeFormatServer/src/Session/Protocol/ProtocolParser.h
+1 −1 CodeFormatServer/src/VFS/VirtualFile.cpp
+19 −22 CodeFormatServer/src/main.cpp
+1 −1 LuaParser/CMakeLists.txt
+3 −3 LuaParser/include/LuaParser/Ast/LuaSyntaxTree.h
+0 −55 LuaParser/include/LuaParser/File/LuaFile.h
+58 −0 LuaParser/include/LuaParser/File/LuaSource.h
+4 −4 LuaParser/include/LuaParser/Lexer/LuaLexer.h
+50 −51 LuaParser/include/LuaParser/Lexer/LuaTokenTypeDetail.h
+13 −3 LuaParser/include/LuaParser/Lexer/TextReader.h
+3 −3 LuaParser/include/LuaParser/Parse/LuaParser.h
+2 −4 LuaParser/include/LuaParser/exception/LuaParseException.h
+5 −5 LuaParser/src/Ast/LuaSyntaxTree.cpp
+26 −25 LuaParser/src/File/LuaSource.cpp
+3 −3 LuaParser/src/Lexer/LuaLexer.cpp
+6 −10 LuaParser/src/Lexer/TextReader.cpp
+18 −4 LuaParser/src/Parse/LuaParser.cpp
+1 −2 LuaParser/src/exception/LuaParseException.cpp
+4 −0 README.md
+3 −0 README_EN.md
+192 −1 Test/src/FormatStyle_unitest.cpp
+3 −3 Test/src/TestHelper.cpp
+1 −1 Test2/src/FormatTest2.cpp
+7 −8 Util/include/Util/SymSpell/EditDistance.h
+4 −5 Util/include/Util/SymSpell/IDistance.h
+10 −11 Util/include/Util/SymSpell/SuggestItem.h
+42 −47 Util/include/Util/SymSpell/SymSpell.h
+204 −240 Util/src/SymSpell/DamerauOSADistance.hpp
+3 −5 Util/src/SymSpell/EditDistance.cpp
+6 −9 Util/src/SymSpell/SuggestItem.cpp
+323 −449 Util/src/SymSpell/SymSpell.cpp
+13 −0 docs/format_config.md
+14 −0 docs/format_config_EN.md
+2 −2 docs/name_style.md
+2 −2 docs/name_style_EN.md
+3 −0 lua.template.editorconfig
+10 −0 resources/lua_dict.txt