This repository contains recommended VSCode extensions for different programming languages and frameworks. The structure is organized into four parent folders, each corresponding to a specific language or framework. Except for the JavaScript folder, all other folders contain a .vscode
subfolder.
The idea is simple: clone this repository and copy the .vscode
folder from the language or framework folder you are interested in, and paste it into your project's root directory. This will set up your VSCode environment with extensions that are tailored for that specific language or framework.
-
Clone the repository to your local machine.
git clone https://github.com/Promact/recommended-vscode-extensions.git
-
Navigate to the cloned directory.
cd recommended-vscode-extensions
- Navigate to the folder corresponding to the language or framework you are working with.
- Copy the
.vscode
folder. - Paste the
.vscode
folder into the root directory of your project.
For example, if you are working on a Python project:
cp -r Python/.vscode /path/to/your/python/project/
.
├── JavaScript
│ ├── React
│ │ └── .vscode
│ └── Angular
│ └── .vscode
├── Python
│ └── .vscode
├── Java
│ └── .vscode
└── Dotnet
└── .vscode
- Fork the repository.
- Create a new branch (
git checkout -b new-feature
). - Make your changes.
- Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin new-feature
). - Create a new Pull Request.
This project is licensed under the MIT License.
Happy Coding! 🚀