Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. // Place your settings in this file to overwrite the default settings
  2. {
  3. "editor.fontSize": 16,
  4. "editor.fontFamily": "Consolas",
  5. "editor.tabSize": 2,
  6. "editor.fontLigatures": true,
  7. "editor.wrappingColumn": 115,
  8. "files.exclude": {
  9. "**/.git": true,
  10. "**/.svn": true,
  11. "**/.DS_Store": true,
  12. "**/node_modules": true,
  13. "**/.idea": true,
  14. "**/android": true,
  15. "**/ios": true,
  16. "**/.vscode": true,
  17. "**/yarn.lock": true,
  18. "**/tmp": true
  19. },
  20. "files.watcherExclude": {
  21. "**/.git/objects/**": true,
  22. "**/node_modules/**": true,
  23. "**/tmp": true
  24. },
  25. "emmet.syntaxProfiles": {
  26. "javascript": "jsx"
  27. },
  28. // "files.associations": {
  29. // "*.js": "javascriptreact"
  30. // },
  31. "search.exclude": {
  32. "**/node_modules": true,
  33. "**/bower_components": true,
  34. "**/.git": true,
  35. "**/.DS_Store": true,
  36. "**/tmp": true
  37. },
  38. "files.trimTrailingWhitespace": true,
  39. "html.suggest.html5": true,
  40. "npm-intellisense.scanDevDependencies": true,
  41. "stylelint.enable": true,
  42. "typescript.check.tscVersion": false,
  43. "window.zoomLevel": 0,
  44. "terminal.external.osxExec": "iTerm.app",
  45. "javascript.validate.enable": false,
  46. "extensions.autoUpdate": true,
  47. "terminal.integrated.fontSize": 13,
  48. "terminal.integrated.cursorBlinking": true,
  49. "sync.gist": "",
  50. "sync.lastUpload": "1970-01-01T00:00:00.000Z",
  51. "sync.autoDownload": false,
  52. "sync.autoUpload": false,
  53. "sync.lastDownload": "1970-01-01T00:00:00.000Z",
  54. "sync.version": 243,
  55. "sync.showSummary": true,
  56. "sync.forceDownload": false,
  57. "sync.workspaceSync": false,
  58. "sync.anonymousGist": false,
  59. "vsicons.projectDetection.disableDetect": true,
  60. "vsicons.dontShowNewVersionMessage": true,
  61. "fileHeaderCommentHelper.languageConfigs": {
  62. "language_javascript": {
  63. "template": [
  64. "/**",
  65. " * Project: $(projectName)",
  66. " * File: $(currentFile)",
  67. " * Author: Emanuel Quimper",
  68. " */"
  69. ]
  70. }
  71. },
  72. "workbench.welcome.enabled": false
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement