-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcf-java-plugin.code-workspace
More file actions
80 lines (80 loc) · 2.29 KB
/
cf-java-plugin.code-workspace
File metadata and controls
80 lines (80 loc) · 2.29 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
{
"folders": [
{
"name": "CF Java Plugin",
"path": "."
}
],
"settings": {
// Python settings for testing
"python.defaultInterpreterPath": "./test/venv/bin/python",
"python.terminal.activateEnvironment": true,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"./test",
"-v"
],
"python.testing.cwd": "./test",
// Go settings for main plugin
"go.gopath": "${workspaceFolder}",
"go.useLanguageServer": true,
"go.formatTool": "goimports",
"go.lintTool": "golint",
"go.buildOnSave": "package",
"go.vetOnSave": "package",
"go.coverOnSave": false,
"go.useCodeSnippetsOnFunctionSuggest": true,
// File associations
"files.associations": {
"*.yml": "yaml",
"*.yaml": "yaml",
"*.go": "go",
"Makefile": "makefile",
"*.py": "python",
},
// File exclusions for better performance
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/*.pyo": true,
"test/.pytest_cache": true,
"test/venv": true,
"*.hprof": true,
"*.jfr": true,
"**/.DS_Store": true,
"build/": true
},
// Search exclusions
"search.exclude": {
"test/venv": true,
"**/__pycache__": true,
"test/.pytest_cache": true,
"**/*.hprof": true,
"**/*.jfr": true,
"build/": true
},
// Editor settings
"editor.formatOnSave": true,
"editor.rulers": [
120
],
"editor.tabSize": 4,
"editor.insertSpaces": true
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.debugpy",
"ms-python.pylance",
"ms-python.black-formatter",
"ms-python.flake8",
"golang.go",
"redhat.vscode-yaml",
"ms-vscode.test-adapter-converter",
"ms-vscode.vscode-json",
"github.copilot",
"github.copilot-chat",
"ms-vscode.makefile-tools"
]
}
}