-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhmsnoor-frontend-web-react.code-workspace
75 lines (75 loc) · 1.96 KB
/
hmsnoor-frontend-web-react.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
{
"folders": [
{
"path": "."
}
],
"settings": {
// WORKBENCH
// ---------------------------------------------------
"workbench.iconTheme": "vscode-icons",
// EDITOR
// ---------------------------------------------------
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [
80
],
"editor.minimap.enabled": false,
"workbench.editor.enablePreview": false,
"editor.fontLigatures": true,
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.letterSpacing": 0.25,
"editor.lineHeight": 22,
"editor.renderWhitespace": "trailing",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
"editor.wordWrap": "off",
// FORMATTERS
// ---------------------------------------------------
"[javascriptreact]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.tabSize": 2,
},
"[typescriptreact]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
// FILES ASSOCIATIONS
// ---------------------------------------------------
"files.associations": {
"**/*.html": "html",
"**/templates/**/*.html": "django-html",
"**/templates/*": "django-txt",
"**/requirements{/**,*}.{txt,in}": "pip-requirements"
},
// EXCLUDE FILES (hide from sidebar)
// ---------------------------------------------------
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/*.pyc": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
}
}
}