You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
]
}
The text was updated successfully, but these errors were encountered:
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
:The text was updated successfully, but these errors were encountered: