-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.code-workspace
105 lines (105 loc) · 2.4 KB
/
workspace.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"[python]": {
"editor.defaultFormatter": "ms-python.python",
"editor.formatOnSave": true,
},
"python.linting.pylintEnabled": true,
"python.formatting.provider": "black",
"css.validate": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": false,
"eslint.format.enable": true,
"eslint.packageManager": "yarn",
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"prettier.configPath": ".prettierrc",
"prettier.vueIndentScriptAndStyle": true,
"python.analysis.extraPaths": [
"./backend"
],
"less.validate": false,
"scss.validate": false,
"stylelint.enable": true,
"stylelint.packageManager": "yarn",
"stylelint.validate": [
"css",
"scss",
"vue"
],
"vetur.format.defaultFormatter.js": "prettier-eslint",
"vetur.validation.template": false,
"editor.tabSize": 2,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.linkedEditing": true,
"stylelint.configFile": "${workspaceFolder}/frontend/.stylelintrc",
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django",
"--django-settings-module=saasboilerplate.settings"
],
"python.pythonPath": "./backend/.venv/bin/python",
},
"extensions": {
"recommendations": [
"ms-python.python",
"batisteo.vscode-django",
"mubaidr.vuejs-extension-pack",
"stylelint.vscode-stylelint",
"github.vscode-pull-request-github",
"eamodio.gitlens",
"mhutchie.git-graph",
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Backend: Remote Attach",
"type": "python",
"request": "attach",
"connect": {
"host": "0.0.0.0",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}/backend",
"remoteRoot": "."
}
]
},
{
"name": "Frontend: Edge",
"request": "launch",
"type": "pwa-msedge",
"url": "http://localhost",
"cwd": "${workspaceFolder}",
"webRoot": "${workspaceFolder}",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack://frontend/*": "${webRoot}/frontend/*"
}
}
]
}
}