-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgrapharch.code-workspace
More file actions
38 lines (38 loc) · 1.18 KB
/
grapharch.code-workspace
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.trimAutoWhitespace": true,
"files.autoSaveWorkspaceFilesOnly": true,
"files.trimTrailingWhitespace": true,
"git.enableCommitSigning": true,
"git.autofetch": "all",
"git.pullBeforeCheckout": true,
"evenBetterToml.taplo.bundled": true,
"editor.formatOnSave": true,
"[rust]": {
"editor.formatOnSave": true
},
"rust-analyzer.imports.granularity": "module",
"rust-analyzer.imports.prefix": "self",
"rust-analyzer.imports.style": "absolute",
"CodeGPT.apiKey": "CodeGPT Plus",
"git-graph.repository.commits.fetchAvatars": true,
"git-graph.repository.commits.showSignatureStatus": true,
"git-graph.repository.sign.commits": true,
"github.gitProtocol": "ssh",
"rust-analyzer.check.command": "clippy",
"rust-analyzer.check.extraArgs": [
"--all-features"
],
"rust-analyzer.checkOnSave": true,
"rust-analyzer.rustc.source": "discover",
"rust-analyzer.diagnostics.enable": true,
"rust-analyzer.diagnostics.disabled": [],
"rust-analyzer.diagnostics.warningsAsInfo": [],
"rust-analyzer.diagnostics.warningsAsHint": []
}
}