-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathPasarGuard.code-workspace
More file actions
113 lines (113 loc) · 3.63 KB
/
PasarGuard.code-workspace
File metadata and controls
113 lines (113 loc) · 3.63 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
{
"remote.extensionKind": {
"GitHub.copilot": [
"ui"
],
"GitHub.copilot-chat": [
"ui"
]
},
"folders": [
{
"path": "."
}
],
"settings": {
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": true,
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.callArgumentNames": "all",
"python.analysis.inlayHints.functionReturnTypes": true,
"ruff.enable": true,
"ruff.format.preview": true,
"ruff.fixAll": true,
"ruff.organizeImports": true,
"ruff.showSyntaxErrors": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit"
}
},
"editor.codeActionsOnSave": {
"source.organizeImports": "never"
},
"remote.localPortHost": "allInterfaces",
"[javascript]": {
"javascript.autoClosingTags": true,
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"typescript.autoClosingTags": true,
"typescript.suggest.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"css.enabledLanguages": [
"html",
"jsx"
],
"files.autoSave": "afterDelay",
"python.testing.pytestArgs": [
"."
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal"
}
],
"compounds": []
},
"extensions": {
"recommendations": [
"donjayamanne.python-extension-pack",
"ms-vscode.vscode-typescript-next",
"yoavbls.pretty-ts-errors",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"charliermarsh.ruff",
"tamasfe.even-better-toml",
"Bar.python-import-helper"
]
}
}