-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathosprey.code-workspace
More file actions
97 lines (97 loc) · 2.58 KB
/
osprey.code-workspace
File metadata and controls
97 lines (97 loc) · 2.58 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
{
"folders": [
{
"name": "Osprey Compiler",
"path": "compiler"
},
{
"name": "Osprey VS Code Extension",
"path": "vscode-extension"
},
{
"name": "webcompiler",
"path": "webcompiler"
},
{
"name": "website",
"path": "website"
},
{
"name": ".devcontainer",
"path": ".devcontainer"
},
{
"name": ".github",
"path": ".github"
},
{
"name": "homebrew-package",
"path": "homebrew-package"
}
],
"settings": {
"go.useLanguageServer": true,
"go.formatTool": "goimports",
"go.lintOnSave": "package",
"go.testFlags": [
"-v"
],
"go.toolsManagement.checkForUpdates": "local",
"rust-analyzer.check.command": "clippy",
"rust-analyzer.cargo.buildScripts.enable": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"terminal.integrated.defaultProfile.linux": "bash",
"git.autofetch": true,
"git.confirmSync": false,
"testExplorer.useNativeTesting": true,
"testExplorer.mergeSuites": true,
"testExplorer.showCollapseButton": true,
"testExplorer.showExpandButton": true,
"testExplorer.showOnRun": true,
"go.testExplorer.enable": true,
"go.testExplorer.packageDisplayMode": "nested",
"go.testExplorer.showDynamicSubtestsInEditor": true,
"mochaExplorer.files": "vscode-extension/test/**/*.test.{js,ts}",
"mochaExplorer.env": {},
"mochaExplorer.cwd": "${workspaceFolder}/vscode-extension",
"jestTestExplorer.rootPath": "webcompiler",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.compilerPath": "/usr/bin/clang",
"C_Cpp.default.compilerArgs": [
"-Wall",
"-Wextra",
"-Werror",
"-Wpedantic",
"-std=c11"
],
"testExplorer.codeLens": true,
"testExplorer.gutterDecoration": true,
"testExplorer.errorDecoration": true,
"testExplorer.sort": "byLabel"
},
"extensions": [
"golang.go",
"rust-lang.rust-analyzer",
"antlr.antlr4",
"llvm-vs-code-extensions.vscode-clangd",
"ms-vscode.makefile-tools",
"ms-vscode.test-adapter-converter",
"ms-vscode.vscode-json",
"redhat.vscode-yaml",
"ms-vscode.vscode-markdown",
"streetsidesoftware.code-spell-checker",
"ms-vscode.hexeditor",
"hbenl.vscode-test-explorer",
"hbenl.vscode-jest-test-adapter",
"kondratiev.vscode-rust-test-adapter",
"premparihar.gotestexplorer",
"ms-vscode.cpptools",
"vadimcn.vscode-lldb",
"twxs.cmake",
"formulahendry.terminal",
"bbenoist.shell"
]
}