Skip to content

Commit 9b03c57

Browse files
committed
deps: update VSCode extensions and settings for improved development experience
1 parent 6123dcc commit 9b03c57

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

.vscode/extensions.json

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
{
22
"recommendations": [
3+
"arcanis.vscode-zipfs",
4+
"bbugh.change-color-format",
5+
"bradlc.vscode-tailwindcss",
6+
"cardinal90.multi-cursor-case-preserve",
37
"christian-kohler.path-intellisense",
8+
"csstools.postcss",
49
"davidanson.vscode-markdownlint",
510
"dbaeumer.vscode-eslint",
11+
"redhat.vscode-xml",
12+
"redhat.vscode-yaml",
613
"editorconfig.editorconfig",
714
"esbenp.prettier-vscode",
8-
"jgclark.vscode-todo-highlight",
15+
"foxundermoon.shell-format",
16+
"ginfuru.better-nunjucks",
17+
"guapibai.nunjucks-prettier",
18+
"humao.rest-client",
19+
"irongeek.vscode-env",
20+
"gruntfuggly.todo-tree",
921
"streetsidesoftware.code-spell-checker-persian",
1022
"streetsidesoftware.code-spell-checker",
11-
"arcanis.vscode-zipfs"
23+
"stylelint.vscode-stylelint",
24+
"yzhang.markdown-all-in-one",
25+
"runem.lit-plugin"
1226
]
1327
}

.vscode/settings.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,18 @@
1212
"explorer.fileNesting.enabled": true,
1313
"explorer.fileNesting.expand": false,
1414
"explorer.fileNesting.patterns": {
15-
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts, ${capture}.d.ts.map",
15+
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts, ${capture}.d.ts.map, ${capture}.js.LEGAL.txt",
16+
"*.mjs": "${capture}.mjs.map, ${capture}.min.mjs, ${capture}.d.ts, ${capture}.d.ts.map, ${capture}.mjs.LEGAL.txt, ${capture}.cjs",
17+
"*.cjs": "${capture}.cjs.map, ${capture}.min.cjs, ${capture}.d.ts, ${capture}.d.ts.map, ${capture}.cjs.LEGAL.txt",
1618
"*.ts": "${capture}.js, ${capture}.js.map, ${capture}.d.ts, ${capture}.d.ts.map",
1719
"tsconfig.json": "tsconfig.*.json, *.tsbuildinfo"
1820
},
21+
"files.associations": {
22+
"*.ajs": "json",
23+
"*.ajs.bk": "json",
24+
"*.conf.template": "nginx",
25+
"*.njk": "html"
26+
},
1927
"files.exclude": {
2028
// "**/*.map": true,
2129
// "**/*.d.ts": true,
@@ -51,5 +59,10 @@
5159
"Mihandoost",
5260
"nanolib",
5361
"tsbuildinfo"
62+
],
63+
"github.copilot.chat.codeGeneration.instructions": [
64+
{
65+
"file": ".github/copilot-instruction.md"
66+
}
5467
]
5568
}

0 commit comments

Comments
 (0)