-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathal.code-workspace
More file actions
106 lines (106 loc) · 3.13 KB
/
al.code-workspace
File metadata and controls
106 lines (106 loc) · 3.13 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"folders": [
{
"path": ".AL-Go"
},
{
"path": ".github"
},
{
"path": "dependencies"
},
{
"path": "resources"
},
{
"path": "scripts"
}
],
"settings": {
"al.assemblyProbingPaths": [
"./.netpackages",
"C:/Windows/assembly/"
],
"al.backgroundCodeAnalysis": true,
"al.codeAnalyzers": [
"${CodeCop}",
"${UICop}",
"${AppSourceCop}",
"${analyzerFolder}BusinessCentral.LinterCop.dll"
],
"al.enableCodeActions": true,
"al.enableCodeAnalysis": true,
"al.enableExternalRulesets": true,
"al.ruleSetPath": "../CegekaAT.ruleset.json",
"alOutline.addDataItemToReportColumnName": true,
"alOutline.addToolTipsToPageFields": true,
"alOutline.codeCleanupActions": [
"AddApplicationAreas",
"AddMissingParentheses",
"ConvertObjectIdsToNames",
"FixIdentifiersCase",
"FixKeywordsCase",
"MakeFlowFieldsReadOnly",
"RemoveRedundantDataClassification",
"RemoveProceduresSemicolon",
"RemoveBeginEnd",
"RemoveEmptyTriggers",
"RemoveEmptySections",
"RemoveStrSubstNoFromError",
"RemoveUnusedVariables",
"CollapseEmptyBrackets",
"SortProcedures",
"SortTriggers",
"SortVariables",
"SortPermissionSetList",
"RemoveEmptyLines",
"TrimTrailingWhitespace",
"FormatDocument"
],
"alOutline.fixCaseRemovesQuotesFromDataTypeIdentifiers": true,
"alOutline.fixCodeCopMissingParenthesesOnSave": true,
"alOutline.idReservationProvider": "ALObjectIdNinja",
"alOutline.openDefinitionInNewTab": true,
"CRS.ExtensionObjectNamePattern": "<Prefix><BaseName><Suffix>",
"CRS.FileNamePattern": "<ObjectNameShort>.<ObjectTypeShortPascalCase>.al",
"CRS.FileNamePatternExtensions": "<ObjectNameShort>.<ObjectTypeShortPascalCase>.al",
"CRS.FileNamePatternPageCustomizations": "<ObjectNameShort>.<ObjectTypeShortPascalCase>.al",
"CRS.ObjectNamePrefix": "",
"CRS.ObjectNameSuffix": "",
"CRS.RenameWithGit": false,
"debug.onTaskErrors": "abort",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
"files.autoSave": "afterDelay",
"files.trimTrailingWhitespace": true,
"githubPullRequests.assignCreated": "${user}",
"githubPullRequests.defaultMergeMethod": "squash",
"githubPullRequests.pullBranch": "always",
"githubPullRequests.pushBranch": "always",
"gitlens.advanced.blame.customArguments": [
"-CCC"
],
"gitlens.advanced.fileHistoryFollowsRenames": true,
"gitlens.blame.ignoreWhitespace": true
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"command": "../.AL-Go/ConfirmLaunch.ps1",
"detail": "Asks the user to confirm before launching the project. Useful when deploying to a production environment.",
"group": "build",
"label": "Confirm Launch",
"type": "shell",
"presentation": {
"clear": true,
"close": true,
"echo": false,
"reveal": "never",
"revealProblems": "never",
"showReuseMessage": false
}
}
]
}
}