forked from l3mpire/lemverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlemverse.code-workspace
85 lines (84 loc) · 2.39 KB
/
lemverse.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"workbench.iconTheme": "vs-seti",
"editor.minimap.enabled": true,
"editor.tabSize": 2,
"search.exclude": {
"core/**": true,
"**/.git": true,
"**/.meteor": true,
"**/node_modules": true,
"*/**/packages": true,
"**/bower_components": true,
"**/tmp": true,
"**/.build": true
},
"git.confirmSync": false,
"editor.wordWrap": "on",
"git.enableSmartCommit": true,
"editor.autoIndent": "full",
"files.associations": {
"*.hbs.html": "handlebars"
},
"git.autofetch": true,
"explorer.confirmDragAndDrop": false,
"workbench.fontAliasing": "auto",
"search.smartCase": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false
},
"breadcrumbs.enabled": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.multiCursorModifier": "ctrlCmd",
"typescript.check.npmIsInstalled": false,
"diffEditor.ignoreTrimWhitespace": false,
"javascript.validate.enable": false,
"javascript.format.enable": false,
"editor.formatOnSave": true,
"eslint.format.enable": true,
"eslint.alwaysShowStatus": true,
"todohighlight.keywordsPattern": "XXX|TODO:|MMM",
"html.format.wrapLineLength": 0,
"editor.linkedEditing": true,
"html.format.indentHandlebars": true,
"html.format.indentInnerHtml": true,
"html.format.templating": true,
"[handlebars]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"json.format.enable": false,
"html.format.endWithNewline": true,
"javascript.suggest.autoImports": false,
"cSpell.words": [
"autorun",
"eqeqeq",
"giphy",
"lempire",
"peerjs",
"Roki",
"spritesheet",
"tilemap",
"tileset",
"anims",
"usemap"
],
"stylelint.validate": ["css", "less", "postcss", "scss"],
"files.exclude": {
"core/**": true
}
}
}