VSC Essentials Core - Pack for Developers

This extension pack for Visual Studio Code adds extensions that are convenient and useful for any development (regardless of language). I reserve the right to update the content of the extension pack at my own discretion.
This Detailed version of the extension pack is for a series of very specific projects in which I am currently involved; projects with multiple repositories that share the same stack of technologies transversally.

Reasons
New Purpose of "VSC Essentials Core"
We have given a new purpose to the "VSC Essentials Core" extension to better align with the hierarchy of extension packages used by our team in Visual Studio Code (VSCode) development.
VSC Essentials Core will now serve as the core of our extensions. This package will contain the essential extensions that all projects within our team must have, regardless of the framework or programming language used. This set of extensions is fundamental to ensuring a common and consistent base across all our developments.
VSC Essentials, the original extension, will now feature a broader range of extensions that, while also considered essential, are not mandatory for all developers on the team. These additional extensions may be useful depending on the project or individual preferences but are not part of the required basic set.
This change will allow us to maintain a more organized and efficient structure, facilitating collaboration and maintenance of our projects in VSCode.
See the CHANGELOG for the latest changes
settings.json
It is imperative that the settings be added to settings.json, inside the ".vscode" folder, and that this file be inside Git version control for this extension pack to work correctly.
{
/**
* Core Basic VSC Essentials Config
*/
"extensions.ignoreRecommendations": true,
"editor.tabCompletion": "on",
"editor.showDeprecated": true,
"editor.rulers": [
80
],
"editor.guides.bracketPairs": "active",
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"workbench.tree.expandMode": "singleClick",
"workbench.tree.renderIndentGuides": "always",
"workbench.tree.indent": 6,
"editor.formatOnType": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[xml]": {
"editor.defaultFormatter": "DotJoshJohnson.xml"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[less]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[scss]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"javascript.format.enable": true,
"javascript.format.semicolons": "insert",
"javascript.preferences.quoteStyle": "single",
"typescript.format.enable": true,
"typescript.format.semicolons": "insert",
"typescript.preferences.quoteStyle": "single",
"css.hover.documentation": true,
"css.lint.important": "warning",
"css.lint.importStatement": "warning",
"less.hover.documentation": true,
"less.lint.important": "warning",
"less.lint.importStatement": "warning",
"scss.hover.documentation": true,
"scss.lint.important": "warning",
"scss.lint.importStatement": "warning",
"html.hover.documentation": true,
"markdownlint.config": {
"default": true,
"MD001": false,
"MD010": false,
"MD024": false,
"MD025": false
},
/**
* * Core Detailed VSC Essentials Config
*/
"todo-tree.tree.showCountsInTree": true,
"todo-tree.general.statusBar": "top three",
"todo-tree.general.showIconsInsteadOfTagsInStatusBar": true,
"todo-tree.general.tags": [
"TODO",
"FIXME",
"FIXIT",
"FIX",
"BUG"
],
"todo-tree.general.tagGroups": {
"FIXME": [
"FIXME",
"FIXIT",
"FIX",
"BUG",
]
},
"todo-tree.highlights.customHighlight": {
"TODO": {
"gutterIcon": true,
"icon": "tasklist",
"iconColour": "#FF8C00",
"type": "tag",
"background": "#CF7200",
"foreground": "#FFFFFF",
"fontWeight": "bold"
},
"FIXME": {
"gutterIcon": true,
"icon": "tools",
"iconColour": "#00FF00",
"type": "tag",
"background": "#008000",
"foreground": "#FFFF00",
"fontWeight": "bold"
}
},
"better-comments.multilineComments": true,
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": true,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "fixme",
"color": "#008000",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "fixit",
"color": "#008000",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "fix",
"color": "#008000",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "bug",
"color": "#008000",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": true,
"italic": false
}
]
}
Note
This extension pack was made from their original VSC Essentials, which you can find here.
This extension can be found at open-vsx.org as well.
Included
This Detailed Core extension pack includes the following extensions:
Extension |
Stats |
Markdown All in One |
 |
markdownlint |
 |
:emojisense: |
 |
Markdown Emoji |
 |
Markdown Checkboxes |
 |
XML Tools |
 |
Todo Tree |
 |
Git Graph |
 |
GitLens — Git supercharged |
 |
Git History |
 |
gitignore |
 |
Terminal in Status Bar |
 |
Better Comments |
 |