-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.ws.code-workspace
128 lines (126 loc) · 4.69 KB
/
.ws.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"folders": [
{
"path": "."
}
],
"settings": {
"C_Cpp.intelliSenseEngine": "disabled",
"editor.tabCompletion": "on",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontFamily": "MesloLGS NF",
"git.autofetch": true,
"git.autofetchPeriod": 60,
"githubIssues.queries": [
{
"label": "My Issues",
"query": "default"
},
{
"label": "Created Issues",
"query": "author:${user} state:open repo:${owner}/${repository} sort:created-desc"
},
{
"label": "Recent Issues",
"query": "state:open repo:${owner}/${repository} sort:updated-desc"
},
{
"label": "Closed Issues",
"query": "state:closed repo:${owner}/${repository} sort:updated-desc"
}
],
"githubIssues.issueBranchTitle": "${user}/issue${issueNumber}/${sanitizedIssueTitle}",
"githubPullRequests.notifications": "pullRequests",
"githubPullRequests.defaultMergeMethod": "squash",
"githubPullRequests.showPullRequestNumberInTree": true,
"bazel.buildifierFixOnFormat": true,
"bazel.enableCodeLens": true,
"bazel.commandLine.queryExpression": "src/...:*",
"search.exclude": {
"external/**": true
},
"[python]": {
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"[cpp]": {
"editor.formatOnSave": true,
"editor.insertSpaces": false,
"editor.trimAutoWhitespace": false
},
"[c]": {
"editor.formatOnSave": true,
"editor.insertSpaces": false,
"editor.trimAutoWhitespace": false
},
"[rust]": {
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.trimAutoWhitespace": true
},
"[restructuredtext]": {
"editor.wordWrap": "wordWrapColumn",
"editor.rulers": [80, 120],
"editor.renderWhitespace": "all",
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.trimAutoWhitespace": true
},
"[starlark]": {
"editor.formatOnSave": true
},
// Files settings
"files.trimTrailingWhitespace": false,
"files.exclude": {},
"files.watcherExclude": {
"/workspaces/lorite-personal-learning/.cache/**": true,
"/workspaces/lorite-personal-learning/.ccache/**": true,
"/workspaces/lorite-personal-learning/.git/objects/**": true,
"/workspaces/lorite-personal-learning/.git/subtree-cache/**": true,
"/workspaces/lorite-personal-learning/bazel-bin/**": true,
"/workspaces/lorite-personal-learning/bazel-lorite-personal-learning/**": true,
"/workspaces/lorite-personal-learning/bazel-out/**": true,
"/workspaces/lorite-personal-learning/bazel-testlogs/**": true,
"/workspaces/lorite-personal-learning/external/**": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
// C++ settings
"clangd.path": "/workspaces/lorite-personal-learning/external/toolchains_llvm++llvm+llvm_toolchain_llvm/bin/clangd",
"clangd.arguments": [
"--compile-commands-dir=${workspaceFolder}/",
"--query-driver=**"
],
"cSpell.customDictionaries": {
"business_dictionary": {
"name": "business_dictionary",
"path": "${workspaceRoot}/.vscode/cSpell/business_dictionary.txt",
"description": "Business related dictionary.",
"addWords": true
},
"technical_dictionary": {
"name": "technical_dictionary",
"path": "${workspaceRoot}/.vscode/cSpell/technical_dictionary.txt",
"description": "Technical related dictionary.",
"addWords": true
}
},
"lldb.displayFormat": "auto",
"lldb.dereferencePointers": true,
"lldb.showDisassembly": "auto",
"bazel.buildifierExecutable": "@buildifier_prebuilt//:buildifier",
"clang-tidy.executable": "/workspaces/lorite-personal-learning/external/toolchains_llvm++llvm+llvm_toolchain_llvm/bin/clang-tidy",
"clang-tidy.compilerArgs": ["--compile-commands-dir=${workspaceFolder}/"],
"vale.enableSpellcheck": true,
"vale.valeCLI.path": "/workspaces/lorite-personal-learning/external/vale_Linux_64-bit/vale",
"vale.valeCLI.syncOnStartup": true,
"prettier.prettierPath": "/workspaces/lorite-personal-learning/bazel-bin/tools/format/prettier_/prettier.runfiles/_main/node_modules/.aspect_rules_js/[email protected]/node_modules/prettier",
"prettier.resolveGlobalModules": false,
"editor.formatOnSave": true, // Enable auto-formatting on save for all file types
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSaveMode": "modificationsIfAvailable",
"github.copilot.chat.codeGeneration.useInstructionFiles": true,
}
}