Last active
October 30, 2018 01:46
-
-
Save jamesxv7/fd62d8752695ddef2871e631a581c7ef 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
// Place your settings in this file to overwrite the default settings | |
{ | |
// Controls the font family. | |
"editor.fontFamily": "hack", | |
// Controls the font size. | |
"editor.fontSize": 14, | |
// Controls whether the editor should render whitespace characters | |
"editor.renderWhitespace": "all", | |
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened. | |
"editor.tabSize": 2, | |
// Migrated from previous "File | Auto Save" setting: | |
"files.autoSave": "afterDelay", | |
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping | |
"editor.wordWrap": "on", | |
// When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents. | |
"editor.detectIndentation": false, | |
"eslint.enable": true, | |
"window.zoomLevel": 0, | |
// Define profile for specified syntax or use your own profile with specific rules. | |
"emmet.syntaxProfiles": { | |
"html": "", | |
"css": "", | |
"vue-html": "html", | |
"vue": "html" | |
}, | |
"editor.formatOnType": true, | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"terminal.integrated.shellArgs.windows": [ | |
"--init-file", | |
"C:\\Program Files\\Git\\etc\\profile" | |
], | |
"workbench.colorTheme": "Material Night Eighties", | |
"editor.tabCompletion": true, | |
"editor.snippetSuggestions": "top", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"html", | |
"vue" | |
], | |
"editor.wordWrapColumn": 120, | |
"editor.minimap.enabled": true, | |
"emmet.triggerExpansionOnTab": true, | |
"vetur.validation.script": true, | |
"eslint.options": { | |
"extensions": [ | |
".html", | |
".js", | |
".vue", | |
".jsx" | |
] | |
}, | |
"vetur.validation.template": false, | |
"typescript.referencesCodeLens.enabled": true, | |
"typescript.implementationsCodeLens.enabled": true, | |
"workbench.startupEditor": "none", | |
"files.autoSaveDelay": 2000, | |
"prettier.eslintIntegration": true, | |
"prettier.singleQuote": true, | |
"prettier.printWidth": 120, | |
"prettier.semi": false, | |
"workbench.iconTheme": "vscode-icons", | |
"terminal.integrated.rendererType": "dom" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment