-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible.code-workspace
61 lines (61 loc) · 2.21 KB
/
ansible.code-workspace
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
{
"folders": [
{
"name": "ansible",
"path": "."
}
],
"settings": {
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontWeight": "normal",
"prettier.enable": true,
"prettier.configPath": "/home/rgehlot/ansible/.prettierrc",
"editor.fontSize": 18,
"editor.fontLigatures": true,
"editor.defaultFormatter": "redhat.ansible",
"editor.minimap.autohide": true,
"editor.folding": true,
"editor.foldingHighlight": true,
"editor.autoIndent": "full",
"editor.formatOnSave": true,
"editor.wrappingIndent": "same",
"editor.wordWrap": "on",
"github.copilot.advanced": {
"enabled": true
},
"git.openRepositoryInParentFolders": "never",
"github.copilot.editor.enableAutoCompletions": true,
"ansible.validation.lint.enabled": true,
"ansible.completion.provideRedirectModules": true,
"ansible.completion.provideModuleOptionAliases": true,
"redhat.telemetry.enabled": false,
"ansible.validation.lint.path": "/home/rgehlot/ansible/.venv/bin/ansible-lint",
"ansible.lightspeed.suggestions.enabled": false, // Requires a license to access to IBM watson Code Assistant.
"ansible.lightspeed.enabled": false, // Requires a license to access to IBM watson Code Assistant.
"ansible.python.activationScript": "/home/rgehlot/ansible/.venv/bin/activate",
"ansible.python.interpreterPath": "/home/rgehlot/ansible/.venv/bin/python3",
"ansible.ansibleNavigator.path": "/home/rgehlot/ansible/.venv/bin/ansible-navigator",
"ansible.ansible.path": "/home/rgehlot/ansible/.venv/bin/ansible",
"ansible.ansible.useFullyQualifiedCollectionNames": true,
"files.associations": {
"*.yml": "ansible", // ansible does not support formatting.
"*.yaml": "yaml"
},
"ansible.executionEnvironment.enabled": false,
"ansibleServer.trace.server": "verbose",
},
"extensions": {
"recommendations": [
"redhat.ansible",
"GitHub.copilot",
"GitHub.copilot-chat",
"yzhang.markdown-all-in-one",
"esbenp.prettier-vscode",
"ms-python.python",
"ms-python.debugpy",
"ms-vscode-remote.remote-wsl",
"redhat.vscode-yaml"
]
}
}