-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
50 lines (50 loc) · 1.41 KB
/
settings.json
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
{
"workbench.colorTheme": "GitHub Dark",
"workbench.iconTheme": "vscode-icons",
"workbench.activityBar.visible": true,
"workbench.startupEditor": "newUntitledFile",
"editor.minimap.enabled": false,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"explorer.confirmDelete": false,
"files.insertFinalNewline": true,
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json"
},
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
"markdown.preview.fontSize": 10,
"editor.rulers": [
80,
120
],
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
}