-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathultimaonline.dev.code-workspace
84 lines (80 loc) · 2.04 KB
/
ultimaonline.dev.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
{
"folders": [
{
"name": "ultimaonline.dev",
"path": "."
}
],
"settings": {
"files.associations": {
".editorconfig": "editorconfig",
".gitconfig": "ini",
".gitignore": "ignore",
".npmrc": "ini"
},
"files.exclude": {
// default excludes
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
// custom excludes
".github": false,
".vscode": false,
"dist": true,
"pages": false,
"public": false,
"styles": false,
"node_modules": true,
".editorconfig": true,
".gitattributes": true,
".gitconfig": true,
".gitignore": false,
".npmrc": true,
"package.json": false,
"package-lock.json": true,
"README.md": false,
"ultimaonline.code-workspace": false
},
// language specific extensions
"[css]": {
"editor.defaultFormatter": "stylelint.vscode-stylelint",
},
"[scss]": {
"editor.defaultFormatter": "stylelint.vscode-stylelint",
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
},
"[json]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
},
"[markdown]": {
"editor.defaultFormatter": "vscode.markdown-language-features",
},
// global editor settings
"breadcrumbs.enabled": true,
"editor.cursorStyle": "line-thin",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": {
"source.fixAll": true,
},
"editor.formatOnSave": false,
"editor.folding": true,
"editor.foldingStrategy": "auto",
"editor.lineNumbers": "on",
"editor.renderWhitespace": "all",
"editor.renderIndentGuides": true,
"editor.showUnused": true,
"explorer.openEditors.visible": 0,
"telemetry.enableCrashReporter": false,
"git.fetchOnPull": true,
"git.enableCommitSigning": true,
// search settings
"search.exclude": {
"**/dist": true,
"**/node_modules": true
}
}
}