-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.bsl-language-server.json
88 lines (55 loc) · 2.27 KB
/
.bsl-language-server.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://1c-syntax.github.io/bsl-language-server/configuration/schema.json",
"language": "ru",
"diagnostics": {
"computeTrigger": "onType",
"parameters": {
"CyclomaticComplexity": {
"complexityThreshold": 40,
"checkModuleBody": true
},
"NestedStatements": {
"maxAllowedLevel": 5
},
"MethodSize": {
"maxMethodSize": 700
},
"NumberOfParams": {
"maxParamsCount": 9
},
"NumberOfOptionalParams": {
"maxOptionalParamsCount": 5
},
"NumberOfValuesInStructureConstructor": {
"maxValuesCount": 5
},
"DeprecatedMessage": false,
"DeprecatedTypeManagedForm": false,
"LineLength": {
"maxLineLength": 180
},
"CognitiveComplexity": {
"complexityThreshold": 30,
"checkModuleBody": true
},
"UsingThisForm": false,
"UsingServiceTag": {
"serviceTags": "пофиксить|доделать|тестовый режим|todo|fixme|!!|mrg|@|отладка|debug|для\\s*отладки|(\\{\\{|\\}\\})КОНСТРУКТОР_|(\\{\\{|\\}\\})MRG|Вставить\\s*содержимое\\s*обработчика|Paste\\s*handler\\s*content|Insert\\s*handler\\s*code|Insert\\s*handler\\s*content|Insert\\s*handler\\s*contents"
},
"GetFormMethod": false,
"UsingObjectNotAvailableUnix": false,
"NestedTernaryOperator": false,
"SpaceAtStartComment": false,
"CompilationDirectiveLost": false,
"CodeOutOfRegion": false,
"NonStandardRegion": false,
"DeprecatedCurrentDate": false,
"DeprecatedAttributes8312": false,
"DeprecatedMethods8317": false,
"UsingSynchronousCalls": false,
"ExcessiveAutoTestCheck": false,
"IsInRoleMethodDiagnostic": false,
"ExportVariables": false
}
}
}