-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrosita-front.code-workspace
48 lines (48 loc) · 1.35 KB
/
rosita-front.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
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"dbaeumer.vscode-eslint",
"formulahendry.auto-close-tag",
"ionutvmi.path-autocomplete",
"naumovs.color-highlight",
"octref.vetur",
"mrmlnc.vscode-scss",
"wix.vscode-import-cost",
"coenraads.bracket-pair-colorizer",
"editorconfig.editorconfig",
"bradlc.vscode-tailwindcss"
],
},
"settings": {
"npm.packageManager": "yarn",
"vetur.validation.template": true,
"vetur.format.defaultFormatter.js": "none",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.validate": [
"vue",
"javascript",
"javascriptreact",
"typescript",
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.style": true
},
"eslint.run": "onSave",
"eslint.format.enable": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"importCost.javascriptExtensions": [
"\\.jsx?$",
"\\.tsx?$",
"\\.vue$"
],
}
}