This repository was archived by the owner on Jan 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaceforge.code-workspace
More file actions
121 lines (121 loc) · 4.75 KB
/
faceforge.code-workspace
File metadata and controls
121 lines (121 loc) · 4.75 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"folders": [
{
"path": ".",
"name": "faceforge"
}
],
"settings": {
"python.defaultInterpreterPath": "${workspaceFolder}\\.venv\\Scripts\\python.exe",
"python.analysis.extraPaths": [
"${workspaceFolder}\\core\\src"
],
"powershell.cwd": "faceforge",
"powershell.buttons.showPanelMovementButtons": true,
"powershell.enableReferencesCodeLens": true,
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.avoidSemicolonsAsLineTerminators": true,
"powershell.codeFormatting.ignoreOneLineBlock": true,
"powershell.codeFormatting.openBraceOnSameLine": true,
"powershell.codeFormatting.whitespaceAfterSeparator": false,
"powershell.codeFormatting.whitespaceAroundOperator": false,
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
"powershell.analyzeOpenDocumentsOnly": true,
"editor.foldingStrategy": "indentation",
/*"editor.defaultFormatter": "ms-vscode.powershell",*/
"editor.formatOnSave": false,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.wordWrap": "on",
"editor.minimap.enabled": true,
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": true,
"editor.renderLineHighlight": "all",
"editor.renderFinalNewline": "on",
"editor.rulers": [
80,
84,
88,
120,
124,
128,
160
],
"editor.codeLens": false,
"editor.fontSize": 12,
"editor.fontLigatures": true,
"editor.lineHeight": 20,
"editor.letterSpacing": 0.6,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorStyle": "line",
"editor.cursorWidth": 2,
"editor.cursorSurroundingLines": 3,
"editor.cursorSurroundingLinesStyle": "default",
"editor.hover.delay": 3000,
"workbench.hover.delay": 3000,
"workbench.sash.hoverDelay": 2000,
"inlineChat.lineEmptyHint": false,
"json.format.enable": true,
"json.validate.enable": true,
"json.schemas": [
{
"fileMatch": [
"manifest.json",
"manifest.webmanifest",
"app.webmanifest"
],
"url": "https://json.schemastore.org/web-manifest.json"
},{
"fileMatch": [
"*_meta.json",
"*_directorymeta.json",
"*-feeds-export_index.json"
],
"url": "https://cdn.h8rt3rmin8r.com/schemas/MakeIndex.meta.json"
}
],
"[powershell]": {
"editor.defaultFormatter": "ms-vscode.powershell"
},
"[log]": {
"editor.wordWrap": "off"
},
"chat.tools.terminal.autoApprove": {
"/^& \"a:\\\\Code\\\\faceforge\\\\scripts\\\\check-core\\.ps1\"$/": {
"approve": true,
"matchCommandLine": true
},
"/^\\.\\\\\\.venv\\\\Scripts\\\\python\\.exe -m ruff format core\\\\src core\\\\tests$/": {
"approve": true,
"matchCommandLine": true
},
"/^powershell -NoProfile -ExecutionPolicy Bypass -File \"a:\\\\Code\\\\faceforge\\\\scripts\\\\check-core\\.ps1\"$/": {
"approve": true,
"matchCommandLine": true
},
"/^powershell -NoProfile -Command \"Set-Location 'a:\\\\Code\\\\faceforge'; \\.\\\\\\.venv\\\\Scripts\\\\ruff\\.exe format core\\\\src\\\\faceforge_core\\\\db\\\\entities\\.py\"$/": {
"approve": true,
"matchCommandLine": true
},
"/^pwsh -File \\.\\\\scripts\\\\check-core\\.ps1$/": {
"approve": true,
"matchCommandLine": true
},
"/^pwsh -File \\.\\\\scripts\\\\_ensure-venv\\.ps1; \\.\\\\\\.venv\\\\Scripts\\\\ruff format core\\\\src\\\\faceforge_core core\\\\tests$/": {
"approve": true,
"matchCommandLine": true
},
"/^pwsh -NoProfile -ExecutionPolicy Bypass -File \"a:\\\\Code\\\\faceforge\\\\scripts\\\\check-core\\.ps1\"$/": {
"approve": true,
"matchCommandLine": true
},
"/^Set-Location 'a:\\\\Code\\\\faceforge\\\\core'; A:/Code/faceforge/\\.venv/Scripts/python\\.exe -m pytest -q$/": {
"approve": true,
"matchCommandLine": true
},
"cargo check": true
}
}
}