Skip to content

Instantly share code, notes, and snippets.

@ErikGMatos
Created September 23, 2021 14:20
Show Gist options
  • Save ErikGMatos/2e6ad089466f9b98ab8611f1dcddd292 to your computer and use it in GitHub Desktop.
Save ErikGMatos/2e6ad089466f9b98ab8611f1dcddd292 to your computer and use it in GitHub Desktop.
config.vscode.json
{
// Configurações necessárias para funcionamento dos plugins
"editor.formatOnSave": false,
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[scss]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[css]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment