Closed
Description
I often do this for clients and they tend to find it very helpful. For example, in a project that uses SCSS, ESLint, Stylelint, Prettier, and Jest, these are some settings that basically everyone tends to want for .vscode/settings.json
:
And some recommended extensions in .vscode/extensions.json
:
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
// Syntax highlighting and more for .vue files
// https://github.com/vuejs/vetur
"octref.vetur",
// Lint-on-save with ESLint
// https://github.com/Microsoft/vscode-eslint
"dbaeumer.vscode-eslint",
// Lint-on-save with Stylelint
// https://github.com/shinnn/vscode-stylelint
"shinnn.stylelint",
// Format-on-save with Prettier
"esbenp.prettier-vscode",
// SCSS intellisense
"mrmlnc.vscode-scss",
// Test `.spec.js` files on save with Jest
"Orta.vscode-jest"
]
}