Skip to content

Latest commit

 

History

History
93 lines (93 loc) · 2.82 KB

config_vscode.md

File metadata and controls

93 lines (93 loc) · 2.82 KB
{
  "editor.cursorBlinking": "phase",
  "editor.detectIndentation": true,
  "editor.formatOnSave": true,
  "editor.insertSpaces": false,
  "editor.minimap.enabled": false,
  "editor.renderWhitespace": "none",
  "editor.tabSize": 2,
  "editor.wordWrap": "wordWrapColumn",
  "explorer.confirmDelete": false,
  "explorer.confirmDragAndDrop": false,
  "explorer.decorations.badges": true,
  "explorer.decorations.colors": true,
  "explorer.openEditors.visible": 6,
  "files.autoSave": "off",
  "editor.tabCompletion": "on",
  "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true,
    "**/node_modules": false,
  },
  "gitlens.advanced.messages": {
    "suppressCommitHasNoPreviousCommitWarning": false,
    "suppressCommitNotFoundWarning": false,
    "suppressFileNotUnderSourceControlWarning": false,
    "suppressGitDisabledWarning": false,
    "suppressGitVersionWarning": false,
    "suppressLineUncommittedWarning": false,
    "suppressNoRepositoryWarning": false,
    "suppressShowKeyBindingsNotice": true
  },
  "javascript.updateImportsOnFileMove.enabled": "always",
  "javascript.validate.enable": false,
  "liveServer.settings.donotShowInfoMsg": true,
  "search.exclude": {
    "node_modules": true,
    "**/node_modules/**": true,
    "**/node_modules": true,
    "**/bower_components": true,
    "**/build": true,
    "**/tools": true,
    "**/packages/mobile": true,
    "**/packages/react-native-ibm-mobilefirst-podfile-fix": true,
    "**/coverage/**": true,
  },
  "sync.autoDownload": false,
  "sync.autoUpload": false,
  "sync.forceDownload": false,
  "sync.gist": "c8fec73b5421930a1cb1853badde8133",
  "sync.quietSync": false,
  "sync.removeExtensions": true,
  "sync.syncExtensions": true,
  "terminal.integrated.shell.osx": "/bin/zsh",
  "window.zoomLevel": 0,
  "workbench.colorTheme": "Atom One Dark",
  "workbench.editor.showIcons": true,
  "workbench.iconTheme": "material-icon-theme",
  "workbench.panel.defaultLocation": "bottom",
  "[jsonc]": {
    "editor.defaultFormatter": "vscode.json-language-features"
  },
  "typescript.updateImportsOnFileMove.enabled": "always",
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSave": true,
  },
  "[css]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSave": true,
  },
  "[scss]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSave": true,
  },
  "git.autofetch": true,
  "[html]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "sqltools.useNodeRuntime": true,
  "sync.forceUpload": true,
  "workbench.activityBar.visible": true,
  "workbench.sideBar.location": "left",
  "files.associations": {
    ".stylelintrc": "json",
    "*.snap": "javascriptreact"
  },
  "diffEditor.ignoreTrimWhitespace": false,
}
```;