Skip to content

Instantly share code, notes, and snippets.

@ncesar
Created April 25, 2019 03:49
Show Gist options
  • Save ncesar/0bfb1687e2299a5e013790fb4c343d49 to your computer and use it in GitHub Desktop.
Save ncesar/0bfb1687e2299a5e013790fb4c343d49 to your computer and use it in GitHub Desktop.
Alguns itens para não esquecer quando começar em um setup novo
Tema: Dark+(default Dark)
1. Browser Preview por Kenneth Auchenberg
2. ES7 React/Redux
3. ESLint
5. Prettier
6. VSCode Google Translate por funkyremi
----------------
nvm < para versões do nodejs e npm
npm-check-updates > checar versões e atualizar elas
create-react-app na última versão
@ncesar
Copy link
Author

ncesar commented Apr 25, 2019

sudo add-apt-repository ppa:slgobinath/safeeyes
sudo apt-get update
sudo apt-get install safeeyes

@ncesar
Copy link
Author

ncesar commented Apr 28, 2019

@ncesar
Copy link
Author

ncesar commented Jun 18, 2019

{
"explorer.confirmDelete": false,
"editor.formatOnSave": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true
},

"files.watcherExclude": {
"**/node_modules": true
},
"workbench.startupEditor": "newUntitledFile",
"browser-preview.startUrl": "http://localhost:3000/",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.iconTheme": "material-icon-theme"
}

@ncesar
Copy link
Author

ncesar commented Jun 18, 2019

GitLens
Material Icon Theme

@ncesar
Copy link
Author

ncesar commented Sep 6, 2019

VSCode Styled Component syntax

@ncesar
Copy link
Author

ncesar commented Sep 9, 2019

{
"explorer.confirmDelete": false,
"editor.formatOnSave": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true
},

"files.watcherExclude": {
"**/node_modules": true
},
"workbench.startupEditor": "newUntitledFile",
"browser-preview.startUrl": "http://localhost:3000/",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
}

@ncesar
Copy link
Author

ncesar commented Dec 9, 2019

ES7 React
ESLint
GitLens
GraphQL
MAterial Icon Theme
Power Mode
Prettier
vscode-styled-components

@ncesar
Copy link
Author

ncesar commented Dec 9, 2019

{
"explorer.confirmDelete": true,
"editor.formatOnSave": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"files.watcherExclude": {
"**/node_modules": true
},
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"prettier.disableLanguages": [
"js"
],
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"powermode.enabled": true,
"workbench.startupEditor": "newUntitledFile",
"browser-preview.startUrl": "http://localhost:3000/",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.shell.windows": "C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe",
"debug.console.fontSize": 16,
"workbench.iconTheme": "material-icon-theme",
"editor.tabSize": 2,
"editor.wordWrapColumn": 120,
"window.zoomLevel": 1,
"tabWidth": 2,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"powermode.presets": "flames",
"powermode.enableShake": false,
"sync.removeExtensions": false
// "eslint.autoFixOnSave": true
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment