Created
August 12, 2018 05:39
-
-
Save pocojang/8452dcece7f76016232d30cab1a5a5c9 to your computer and use it in GitHub Desktop.
vscode config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "editor.detectIndentation": false, | |
| "editor.tabSize": 2, | |
| "editor.fontFamily": "d2coding ligature", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 16, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnPaste": true, | |
| "editor.formatOnType": false, | |
| "editor.insertSpaces": true, | |
| "editor.minimap.enabled": false, | |
| "editor.renderWhitespace": "none", | |
| "editor.snippetSuggestions": "top", | |
| "editor.wordWrapColumn": 80, | |
| "emmet.triggerExpansionOnTab": true, | |
| "emmet.showSuggestionsAsSnippets": true, | |
| "emmet.showAbbreviationSuggestions": true, | |
| "emmet.showExpandedAbbreviation": "never", | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx", | |
| "javascriptreact": "jsx", | |
| "xml": { | |
| "attr_quotes": "single" | |
| } | |
| }, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| "vue-html": "html", | |
| "vue": "html" | |
| }, | |
| "extensions.autoUpdate": true, | |
| "files.eol": "\n", | |
| "files.associations": { | |
| "*.js": "javascript", | |
| "*.jsx": "javascriptreact", | |
| "*.vue": "vue", | |
| "*.ejs": "html" | |
| }, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.DS_Store": true, | |
| "*/node_modules": false, | |
| "**/.idea": true, | |
| "**/.vscode": false, | |
| "**/yarn.lock": true, | |
| "**/tmp": true, | |
| "node_modules": true | |
| }, | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/node_modules/**": true, | |
| "**/tmp": true, | |
| "**/build": true, | |
| "**/defaultsettings/**": true | |
| }, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/.git": true, | |
| "**/.DS_Store": true, | |
| "**/tmp": true, | |
| "**/coverage": true, | |
| "**/build": true, | |
| "**/Pods": true, | |
| "**/*.xcodeproj": true, | |
| "**/*.xcworkspace": true, | |
| "**/.meteor": true | |
| }, | |
| "html.format.indentInnerHtml": true, | |
| "npm-intellisense.scanDevDependencies": false, | |
| "javascript.validate.enable": false, | |
| "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
| "code-runner.defaultLanguage": "javascript", | |
| "code-runner.executorMapByFileExtension": { | |
| ".js": "javascript", | |
| ".jsx": "javascript", | |
| ".ts": "echo .ts & npm run ts-node" | |
| }, | |
| "code-runner.runInTerminal": true, | |
| "code-runner.terminalRoot": "/Applications/iTerm.app", | |
| "code-runner.clearPreviousOutput": true, | |
| "code-runner.saveAllFilesBeforeRun": true, | |
| "material-icon-theme.showUpdateMessage": false, | |
| "terminal.integrated.fontSize": 14, | |
| "terminal.integrated.lineHeight": 1.4, | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "terminal.integrated.shell.linux": "/bin/zsh", | |
| "terminal.integrated.fontFamily": "d2coding", | |
| "markdown.previewFrontMatter": "show", | |
| "markdown.preview.linkify": false, | |
| "eslint.enable": false, | |
| "eslint.nodePath": "/usr/local/lib", | |
| "sync.gist": "ed7dc4d409a540b9af6c818864891eb1", | |
| "sync.lastUpload": "", | |
| "sync.autoDownload": false, | |
| "sync.autoUpload": false, | |
| "sync.lastDownload": "2018-07-25T15:55:31.233Z", | |
| "sync.forceDownload": false, | |
| "sync.host": "", | |
| "sync.pathPrefix": "", | |
| "sync.quietSync": false, | |
| "sync.askGistName": false, | |
| "sync.removeExtensions": true, | |
| "sync.syncExtensions": true, | |
| "git.confirmSync": false, | |
| "git.enableSmartCommit": true, | |
| "git.autofetch": true, | |
| "gitlens.showWhatsNewAfterUpgrades": false, | |
| "gitlens.keymap": "alternate", | |
| "gitlens.advanced.messages": { | |
| "suppressFileNotUnderSourceControlWarning": true, | |
| "suppressLineUncommittedWarning": true, | |
| "suppressNoRepositoryWarning": true, | |
| "suppressShowKeyBindingsNotice": true, | |
| "suppressUpdateNotice": true, | |
| "suppressWelcomeNotice": true | |
| }, | |
| "explorer.confirmDragAndDrop": false, | |
| "jest.autoEnable": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "terminal.explorerKind": "external", | |
| "terminal.external.osxExec": "iTerm.app", | |
| "prettier.arrowParens": "always", | |
| "prettier.printWidth": 120, | |
| "prettier.semi": true, | |
| "prettier.singleQuote": true, | |
| "prettier.trailingComma": "all", | |
| "prettier.disableLanguages": [ | |
| "markdown" | |
| ], | |
| "prettier.useTabs": true, | |
| "window.openFoldersInNewWindow": "on", | |
| "window.zoomLevel": 0, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment