Created
March 6, 2017 14:17
-
-
Save mizdra/c5dc0cf9e3e0b8d2f5fe1e806ed000eb to your computer and use it in GitHub Desktop.
2017/3/6時点でのvscodeの設定
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.fontFamily": "Ricty for Powerline", | |
"editor.fontSize": 14, | |
"guides.normal.style": "dashed", | |
"git.confirmSync": false, | |
"files.associations": { | |
"*.vue": "html" // .vue で emmet を有効化 | |
}, | |
"editor.wordWrap": "off", | |
"workbench.colorTheme": "Atom One Dark", | |
"workbench.iconTheme": "vs-seti", | |
"editor.minimap.enabled": true, | |
"editor.dragAndDrop": true, | |
"editor.minimap.renderCharacters": false, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
{ | |
"language": "vue", | |
"autoFix": true // .vue で `eslint --fix` を有効化 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment