Last active
April 12, 2019 06:15
-
-
Save ghostcode/a52f808e43eb63476748460c5c0d6c36 to your computer and use it in GitHub Desktop.
VS-Code的配置文件
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.wordSeparators": "`~!@#$%^&*()=+[{]}\\|;:'\",.<>/?", | |
| "editor.tabSize": 2, | |
| "editor.detectIndentation": false, | |
| "files.associations": { | |
| "*.wxml": "html", | |
| "*.wxss": "css", | |
| "*.html": "html" | |
| }, | |
| "window.zoomLevel": 1, | |
| // "liveServer.settings.donotShowInfoMsg": true, | |
| // "liveServer.settings.host": "192.168.30.55", | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "eslint.autoFixOnSave": true, | |
| "eslint.validate": [ | |
| "javascript", | |
| "javascriptreact", | |
| { | |
| "language": "html", | |
| "autoFix": true | |
| }, | |
| { | |
| "language": "vue", | |
| "autoFix": true | |
| } | |
| ], | |
| "sync.gist": "ab4bc481feddc3791e96f4a9e215d524", | |
| "shareCode.github.username": "ghostcode", | |
| "shareCode.github.authtoken": "ab4bc481feddc3791e96f4a9e215d524", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "leetcode.endpoint": "leetcode-cn", | |
| "leetcode.defaultLanguage": "javascript", | |
| "workbench.colorTheme": "Monokai", | |
| // "vetur.validation.template": false, | |
| "terminal.integrated.fontFamily": "Source Code Pro for Powerline" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment