|
9 | 9 |
|
10 | 10 | [Language Server Protocol](https://microsoft.github.io/language-server-protocol/) implementation for 1C (BSL) - 1C:Enterprise 8 and [OneScript](http://oscript.io) languages. |
11 | 11 |
|
12 | | -[English version](en/index.md) |
| 12 | +[Russian version](../index.md) |
13 | 13 |
|
14 | 14 | - <a href="#capabilities">Capabilities</a> |
15 | 15 | - <a href="#cli">Run from command line</a> |
|
24 | 24 |
|
25 | 25 | - File formatting |
26 | 26 | - Selected region formatting |
| 27 | +- Symbol definition for current file (regions, procedures, functions, variables, defined via `Var` keyword) |
| 28 | +- Folding regions definition `#Region`, `#If`, procedures and functions, code blocks |
27 | 29 | - Diagnostics |
| 30 | +- Quick fixes for several diagnostics |
28 | 31 | - Run diagnostics engine from command line |
29 | 32 |
|
30 | 33 | <a id="cli"></a> |
@@ -130,11 +133,13 @@ Used for code analysis to meet coding standards and search for possible errors. |
130 | 133 | - [DeprecatedMessage - Restriction on the use of deprecated "Message" method](diagnostics/DeprecatedMessage.md) |
131 | 134 | - [EmptyCodeBlock - Empty code block](diagnostics/EmptyCodeBlock.md) |
132 | 135 | - [EmptyStatement - Empty Ssatement](diagnostics/EmptyStatement.md) |
| 136 | +- [ExtraCommas - Commas without a parameter at the end of a method call](diagnostics/ExtraCommas.md) |
133 | 137 | - [FunctionShouldHaveReturn - Function must have Return statement](diagnostics/FunctionShouldHaveReturn.md) |
134 | 138 | - [IfElseDuplicatedCodeBlockDiagnostic - Duplicated code blocks in If...Then...ElsIf...](diagnostics/IfElseDuplicatedCodeBlock.md) |
135 | 139 | - [IfElseDuplicatedConditionDiagnostic - Duplicated conditions in If...Then...ElsIf...](diagnostics/IfElseDuplicatedCondition.md) |
136 | 140 | - [IfElseIfEndsWithElse - Using If...Then...ElsIf... statement](diagnostics/IfElseIfEndsWithElse.md) |
137 | 141 | - [LineLength - Line length restriction](diagnostics/LineLength.md) |
| 142 | +- [MagicNumber - Using magic number](diagnostics/MagicNumber.md) |
138 | 143 | - [MethodSize - Method size restriction](diagnostics/MethodSize.md) |
139 | 144 | - [NestedConstructorsInStructureDeclaration - Nested constructors with parameters in structure declaration](diagnostics/NestedConstructorsInStructureDeclaration.md) |
140 | 145 | - [NestedStatements - Control flow statements should not be nested too deep](diagnostics/NestedStatements.md) |
|
0 commit comments