Created
November 12, 2019 16:40
-
-
Save ajtruex/80441bed99f8d28f12e1e1b47cada4ca to your computer and use it in GitHub Desktop.
vscode settings for vue.js
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.snippetSuggestions": "inline", | |
| "editor.formatOnPaste": true, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "editor.minimap.enabled": false, | |
| "workbench.colorCustomizations": { | |
| "editor.background": "#1B2B34", | |
| "scrollbarSlider.background": "#4D1E0F", | |
| "scrollbarSlider.activeBackground": "#E74C3C", | |
| "scrollbarSlider.hoverBackground": "#E74C3C", | |
| "editor.selectionBackground": "#4F5B66", | |
| "editorGroupHeader.tabsBorder": "#E74C3C" | |
| }, | |
| "window.closeWhenEmpty": true, | |
| "editor.dragAndDrop": true, | |
| "editor.tabCompletion": "on", | |
| "window.openFilesInNewWindow": "off", | |
| "window.title": "${activeEditorFull}${separator}${rootName}", | |
| "files.trimTrailingWhitespace": true, | |
| "window.zoomLevel": 0, | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "liveServer.settings.port": 8080, | |
| "npm.enableScriptExplorer": true, | |
| "editor.formatOnType": true, | |
| "workbench.sideBar.location": "left", | |
| "nativescript.analytics.enabled": false, | |
| "eslint.enable": true, | |
| "editor.formatOnSave": true, | |
| "eslint.autoFixOnSave": true, | |
| "eslint.run": "onSave", | |
| "eslint.validate": [ | |
| { | |
| "language": "vue", | |
| "autoFix": true | |
| }, | |
| { | |
| "language": "vue-html", | |
| "autoFix": true | |
| }, | |
| { | |
| "language": "html", | |
| "autoFix": true | |
| }, | |
| { | |
| "language": "javascript", | |
| "autoFix": true | |
| }, | |
| { | |
| "language": "javascriptreact", | |
| "autoFix": true | |
| } | |
| ], | |
| "vetur.format.defaultFormatter.css": "prettier", | |
| "vetur.format.defaultFormatter.postcss": "prettier", | |
| "vetur.format.defaultFormatter.scss": "prettier", | |
| "vetur.format.defaultFormatter.less": "prettier", | |
| "vetur.format.defaultFormatter.stylus": "stylus-supremacy", | |
| "vetur.format.defaultFormatter.js": "prettier-eslint", | |
| "vetur.validation.style": true, | |
| "vetur.validation.template": false, | |
| "gitlens.defaultDateFormat": "dddd, MMMM Do YYYY, h:mm:ss a", | |
| "gitlens.settings.mode": "advanced", | |
| "gitlens.defaultDateStyle": "absolute", | |
| "gitlens.insiders": true, | |
| "gitlens.menus": { | |
| "editor": { | |
| "blame": false, | |
| "clipboard": true, | |
| "compare": true, | |
| "details": true, | |
| "history": false, | |
| "remote": true | |
| }, | |
| "editorTab": { | |
| "compare": false, | |
| "history": false, | |
| "remote": true | |
| }, | |
| "explorer": { | |
| "compare": true, | |
| "history": true, | |
| "remote": true | |
| } | |
| }, | |
| "gitlens.codeLens.enabled": true, | |
| "liveServer.settings.donotVerifyTags": true, | |
| "path-intellisense.showHiddenFiles": true, | |
| "explorer.sortOrder": "default", | |
| "gitlens.advanced.messages": { | |
| "suppressShowKeyBindingsNotice": true | |
| }, | |
| "files.associations": { | |
| "receipt": "hex", | |
| "*.json": "json", | |
| ".vuerc": "json", | |
| "*.rmd": "markdown", | |
| "*.html": "html" | |
| }, | |
| "[makefile]": { | |
| "editor.insertSpaces": true | |
| }, | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "html.format.enable": false, | |
| "markdown.preview.openMarkdownLinks": "inEditor", | |
| "vetur.format.defaultFormatterOptions": { | |
| "prettier": { | |
| "semi": false | |
| } | |
| }, | |
| "emmet.triggerExpansionOnTab": true, | |
| "emmet.includeLanguages": { | |
| "vue-html": "html", | |
| "vue": "html" | |
| }, | |
| "gitlens.views.repositories.files.layout": "auto", | |
| "gitlens.views.fileHistory.enabled": true, | |
| "gitlens.views.fileHistory.location": "scm", | |
| "gitlens.views.lineHistory.enabled": true, | |
| "gitlens.views.lineHistory.location": "scm", | |
| "gitlens.views.compare.location": "scm", | |
| "gitlens.views.search.location": "scm", | |
| "[plaintext]": {}, | |
| "todohighlight.isEnable": true, | |
| "css.validate": false, | |
| "less.validate": false, | |
| "scss.validate": false, | |
| "sync.gist": "", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "python.pythonPath": "/usr/local/bin/python3", | |
| "python.formatting.autopep8Path": "autopep8", | |
| "python.linting.enabled": true, | |
| "eslint.alwaysShowStatus": true, | |
| "vetur.format.defaultFormatter.html": "prettier", | |
| "editor.maxTokenizationLineLength": 100000, | |
| "workbench.settings.editor": "json", | |
| "readTime.enabled": true, | |
| "editor.suggestSelection": "first", | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "telemetry.enableTelemetry": false, | |
| "editor.largeFileOptimizations": false, | |
| "editor.cursorStyle": "block", | |
| "updateChannel": "insiders", | |
| "editor.wordWrap": "on", | |
| "editor.renderWhitespace": "none", | |
| "workbench.colorTheme": "TruBoo", | |
| "editor.fontSize": 13 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment