Skip to content

Instantly share code, notes, and snippets.

@thiagobraddock
Created February 15, 2023 22:05
Show Gist options
  • Save thiagobraddock/4f98527c0b03ae1833f4abc0d7649b89 to your computer and use it in GitHub Desktop.
Save thiagobraddock/4f98527c0b03ae1833f4abc0d7649b89 to your computer and use it in GitHub Desktop.
Configuração VSCODE
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"viijay-kr.react-ts-css",
"stylelint.vscode-stylelint",
]
}
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true,
},
"extensions.ignoreRecommendations": false,
"[javascriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment