-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrats.code-workspace
More file actions
99 lines (99 loc) · 2.92 KB
/
rats.code-workspace
File metadata and controls
99 lines (99 loc) · 2.92 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
98
99
{
"folders": [
{
"path": "."
},
{
"path": "rats"
},
{
"path": "rats-apps"
},
{
"path": "rats-devtools"
},
],
"settings": {
"files.exclude": {
// de-duplicate paths added as workspace roots above
"rats": true,
"rats-apps": true,
"rats-devtools": true,
// tool-generated dirs/files
".mypy_cache": true,
".pytest_cache": true,
".coverage": true,
"**/tags": true,
"**/build": true,
// other editor/ide settings
"**/.idea": true,
"**/.tmp": true,
"**/__pycache__": true,
"**/.venv": true
},
// settings to apply to all workspace roots
"debug.toolBarLocation": "commandCenter",
"diffEditor.diffAlgorithm": "advanced",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit",
},
"editor.rulers": [
99
],
"[dockercompose]": {
"editor.autoIndent": "advanced"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[yaml]": {
"editor.autoIndent": "advanced"
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"markdown.validate.enabled": true,
"notebook.formatOnSave.enabled": true,
"notebook.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true,
"python.analysis.extraPaths": [
"${fileWorkspaceFolder}/src/python"
],
"python.autoComplete.extraPaths": [
"${fileWorkspaceFolder}/src/python"
],
"python.analysis.inlayHints.pytestParameters": true,
"python.envFile": "${fileWorkspaceFolder}/.envrc",
"redhat.telemetry.enabled": false,
"search.exclude": {
"**/build": true,
"**/.tmp": true,
"**/outputs": true,
"**/__pycache__": true,
"**/.venv": true
},
"yaml.format.enable": true,
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.debugpy",
"charliermarsh.ruff",
"eamodio.gitlens",
"redhat.vscode-yaml",
"bierner.github-markdown-preview",
"GitHub.copilot",
"GitHub.vscode-pull-request-github"
]
}
}