Skip to content

Commit c37a69c

Browse files
committed
chore(vscode): config
1 parent 03ebe8d commit c37a69c

File tree

3 files changed

+80
-1
lines changed

3 files changed

+80
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
.vscode
21
.well-known
32
dist
43
external-mods

.vscode/extensions.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"recommendations": [
3+
"Atishay-Jain.All-Autocomplete",
4+
"ChakrounAnas.turbo-console-log",
5+
"SilverFletcherr.vuetify-gotodocs",
6+
"Vue.volar",
7+
"WallabyJs.console-ninja",
8+
"Zignd.html-css-class-completion",
9+
"aaron-bond.better-comments",
10+
"dbaeumer.vscode-eslint",
11+
"ecmel.vscode-html-css",
12+
"formulahendry.auto-rename-tag",
13+
"ishiyama.vuejs-peek",
14+
"kisstkondoros.vscode-gutter-preview",
15+
"mgmcdermott.vscode-language-babel",
16+
"nhoizey.gremlins",
17+
"pflannery.vscode-versionlens",
18+
"pranaygp.vscode-css-peek",
19+
"sburg.vscode-javascript-booster",
20+
"vuetifyjs.vuetify-vscode",
21+
"wix.vscode-import-cost"
22+
]
23+
}

.vscode/settings.json

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"[css]": {
3+
"editor.defaultFormatter": "vscode.css-language-features"
4+
},
5+
"[javascript]": {
6+
"editor.defaultFormatter": "vscode.typescript-language-features"
7+
},
8+
"[json]": {
9+
"editor.defaultFormatter": "vscode.json-language-features"
10+
},
11+
"[vue]": {
12+
"editor.defaultFormatter": "Vue.volar"
13+
},
14+
"console-ninja.allowConsoleLogToTriggerPredictions": true,
15+
"console-ninja.captureFunctions": true,
16+
"console-ninja.featureSet": "Community",
17+
"console-ninja.outputMode": "In View",
18+
"console-ninja.showWhatsNew": false,
19+
"console-ninja.toolsToEnableSupportAutomaticallyFor": {
20+
"angular": false,
21+
"astro": false,
22+
"hydrogen": false,
23+
"jest": false,
24+
"live-preview-extension": true,
25+
"live-server": true,
26+
"live-server-extension": true,
27+
"nest.js": false,
28+
"next.js": false,
29+
"qwik": false,
30+
"remix": false
31+
},
32+
"console-ninja.warnOnNoToolsDetected": false,
33+
"css.autoValidation": "Always",
34+
"editor.tabSize": 2,
35+
"eslint.format.enable": true,
36+
"eslint.ignoreUntitled": true,
37+
"eslint.useFlatConfig": true,
38+
"files.eol": "\n",
39+
"files.insertFinalNewline": true,
40+
"gremlins.showInProblemPane": true,
41+
"html-css-class-completion.enableEmmetSupport": true,
42+
"importCost.fontStyle": "italic",
43+
"importCost.largePackageDarkColor": "#FF5555",
44+
"importCost.largePackageLightColor": "#FF5555",
45+
"importCost.mediumPackageLightColor": "#50FA7B",
46+
"importCost.smallPackageDarkColor": "#50FA7B",
47+
"importCost.smallPackageLightColor": "#50FA7B",
48+
"vue.autoInsert.dotValue": true,
49+
"vue.complete.casing.props": "autoCamel",
50+
"vue.format.script.initialIndent": true,
51+
"vue.format.style.initialIndent": true,
52+
"vue.inlayHints.destructuredProps": true,
53+
"vue.inlayHints.inlineHandlerLeading": true,
54+
"vue.inlayHints.missingProps": true,
55+
"vue.inlayHints.optionsWrapper": true,
56+
"vue.inlayHints.vBindShorthand": true
57+
}

0 commit comments

Comments
 (0)