Skip to content

Commit c572f45

Browse files
committed
Update extensions.json
1 parent 624d595 commit c572f45

File tree

1 file changed

+39
-2
lines changed

1 file changed

+39
-2
lines changed

.vscode/extensions.json

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,41 @@
11
{
2-
"recommendations": [],
3-
"unwantedRecommendations": []
2+
"recommendations": [
3+
// Linting and Formatting
4+
"dbaeumer.vscode-eslint", // ESLint for JavaScript/TypeScript linting
5+
"esbenp.prettier-vscode", // Prettier for code formatting
6+
"stylelint.vscode-stylelint", // Stylelint for CSS/SCSS linting
7+
8+
// Language Support
9+
"ms-vscode.vscode-typescript-next", // Enhanced TypeScript support
10+
"redhat.vscode-yaml", // YAML language support
11+
"syler.sass-indented", // SCSS/SASS language support
12+
"jinja.html-formatter", // Jinja2 templating language support
13+
14+
// Development Tools
15+
"ritwickdey.LiveServer", // Live Server for HTML/JS development
16+
"gruntfuggly.todo-tree", // TODO Tree for managing TODOs
17+
"github.vscode-pull-request-github", // GitHub Pull Request integration
18+
"eamodio.gitlens", // GitLens for advanced Git capabilities
19+
"ms-azuretools.vscode-docker", // Docker support for containerized applications
20+
21+
// Code Quality and Documentation
22+
"streetsidesoftware.code-spell-checker", // Spell checker for code comments and strings
23+
"microsoft.vscode-code-annotations", // Code annotations for better documentation
24+
25+
// Theming and UI Enhancements
26+
"PKief.material-icon-theme", // Material icon theme
27+
"vscode-icons-team.vscode-icons", // VSCode Icons for better file icons
28+
29+
// Performance and Productivity
30+
"shardulm94.trailing-spaces", // Trailing spaces visualizer
31+
"christian-kohler.path-intellisense", // Path Intellisense for faster file path completion
32+
"formulahendry.auto-rename-tag", // Auto rename paired HTML/XML tags
33+
"editorconfig.editorconfig" // EditorConfig support for maintaining consistent coding styles
34+
],
35+
"unwantedRecommendations": [
36+
// Unwanted Extensions (if any)
37+
"hookyqr.beautify", // Beautify conflicts with Prettier
38+
"coenraads.bracket-pair-colorizer", // Can impact performance, prefer built-in bracket highlighting
39+
"vscode.typescript-language-features" // Built-in TypeScript support, but might conflict with custom setup
40+
]
441
}

0 commit comments

Comments
 (0)