-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ember-data-autocomplete-js.code-workspace
78 lines (78 loc) · 2.41 KB
/
ember-data-autocomplete-js.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
{
"extensions": {
"recommendations": [
"anjali.clipboard-history",
"msjsdiag.debugger-for-chrome",
"dbaeumer.vscode-eslint",
"vtrois.gitmoji-vscode",
"cmstead.jsrefactor",
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss",
"austenc.tailwind-docs",
"hbenl.vscode-test-explorer",
"gruntfuggly.todo-tree",
"visualstudioexptteam.vscodeintellicode",
"vscode-icons-team.vscode-icons",
"stylelint.vscode-stylelint",
"maptz.camelcasenavigation",
"mgmcdermott.vscode-language-babel",
"streetsidesoftware.code-spell-checker",
"editorconfig.editorconfig",
"felixrieseberg.vsc-ember-cli",
"candidmetrics.ember-decorator-snippets",
"candidmetrics.ember-module-snippets",
"josa.ember-related-files",
"andrejunges.handlebars",
"wix.vscode-import-cost",
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
"lifeart.vscode-ember-unstable",
"pflannery.vscode-versionlens",
"adambaker.vsc-prettier-glimmer",
"redhat.vscode-yaml"
],
"unwantedRecommendations": []
},
"folders": [
{
"path": "."
}
],
"settings": {
// tailwindcss @apply rules cause vscode to produce error-squiggles (https://stackoverflow.com/a/62017939/545137)
"css.validate": false,
"cSpell.enabled": true,
"cSpell.ignorePaths": [
"**/package-lock.json",
"**/node_modules/**",
"**/vscode-extension/**",
"**/.git/objects/**",
".vscode",
"*.code-workspace"
],
"cSpell.words": [],
// by default all files will be formatted with prettier
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [120],
"editor.tabSize": 2,
"editor.wordWrapColumn": 120,
// triggering emmet expansion with tab-key; like Jetbrains IDEs
"emmet.triggerExpansionOnTab": true,
"stylelint.enable": true,
"tailwindCSS.emmetCompletions": true,
"editor.formatOnSave": true,
"gitmoji.outputType": "code",
"workbench.colorCustomizations": {
"activityBar.background": "#005983",
"activityBar.foreground": "#F2FAFD",
"titleBar.activeBackground": "#0095DA",
"titleBar.activeForeground": "#F2FAFD"
},
"emmet.includeLanguages": {
"javascript": "html",
"handlebars": "html"
}
}
}