Visual Studio Code settings For Developers
{
"editor.suggestSelection": "first",
"files.autoSave": "afterDelay",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.fontLigatures": true,
"explorer.confirmDelete": false,
"window.zoomLevel": 1,
"breadcrumbs.enabled": true,
"terminal.integrated.fontFamily": "Consolas",
"java.configuration.checkProjectSettingsExclusions": false,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"standard.enable": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.shell.linux": "/bin/bash",
"terminal.integrated.rendererType": "dom",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.fontFamily": "Consolas",
"editor.tabSize": 2,
"editor.wordWrapColumn": 120,
"editor.wordWrap": "on",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"editor.formatOnSave": true,
"sync.gist": "a4d5a84c6e8cc215e4d64f361fe933ed",
"debug.console.wordWrap": false,
"prettier.trailingComma": "es5",
"prettier.printWidth": 120,
"editor.fontWeight": "500",
"terminal.integrated.fontWeightBold": "normal",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"s
},
"editor.fontSize": 15,
"html.format.wrapLineLength": 0,
"prettier.arrowParens": "always",
"diffEditor.ignoreTrimWhitespace": false,
"git.confirmSync": false,
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.showSlider": "always",
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true
}
Comments
Post a Comment