Skip to content

Instantly share code, notes, and snippets.

@emersonpgomes
Created February 21, 2018 18:53
Show Gist options
  • Save emersonpgomes/1b81c5bedf1e968d051bf66bf41be9a0 to your computer and use it in GitHub Desktop.
Save emersonpgomes/1b81c5bedf1e968d051bf66bf41be9a0 to your computer and use it in GitHub Desktop.
Configurações do VS Code
{
"window.zoomLevel": 0,
"vsicons.presets.angular": false,
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.rulers": [80, 100, 120],
"editor.renderIndentGuides": true,
"vsicons.projectDetection.disableDetect": true,
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": true,
"editor.dragAndDrop": true,
"files.defaultLanguage": "javascriptreact",
"terminal.integrated.confirmOnExit": true,
"javascript.implicitProjectConfig.checkJs": false,
"workbench.colorTheme": "Sublime Oceanic Next",
"git.enableSmartCommit": true,
"files.autoSave": "off",
"workbench.startupEditor": "newUntitledFile",
// "files.exclude": {
// "**/.git": true,
// "**/.svn": true,
// "**/.hg": true,
// "**/CVS": true,
// "**/.DS_Store": true,
// "**/dist": true,
// "**/build": true
// },
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/*.min.*": true,
"public/**": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true,
"**/build": true,
"**/*.min.*": true,
"public/**": true
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"eslint.autoFixOnSave": true,
"eslint.run": "onSave",
"eslint.workingDirectories": [
"./src"
],
"javascript.format.enable": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment