Created
January 20, 2018 01:47
-
-
Save heri3x/1cdb59bff48df313c3f7cd4b22e90d5d to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
//新規ファイルの文字コード | |
//"files.encoding": "utf8", | |
"files.encoding": "utf8bom", | |
//文字コードの自動判別 | |
"files.autoGuessEncoding": true, | |
//インデント方法の自動検出 | |
"editor.detectIndentation": true, | |
//無視ファイル | |
"files.exclude": { | |
"**/*.meta": true, | |
"**/.git": true, | |
"**/.svn": true, | |
"**/Thumbs.db": true, | |
"**/.DS_Store": true | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment