Last active
September 3, 2018 10:34
-
-
Save naku-i386/c205c309d70b333284198f5dd37b634b to your computer and use it in GitHub Desktop.
VSCode preferences - Format on save, tabs, trim whitespace, final newline
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.insertSpaces": false, | |
"editor.tabSize": 2, | |
"editor.trimAutoWhitespace": true, | |
"editor.formatOnSave": true, | |
"files.autoSave": "off", | |
"files.insertFinalNewline": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.acceptSuggestionOnEnter": "off", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"search.location": "panel" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment