Last active
May 8, 2020 18:19
-
-
Save hersonls/a92eebf61b0e2870b9079aafaba3b378 to your computer and use it in GitHub Desktop.
My VSCODE config
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.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.snippetSuggestions": "top", | |
"editor.minimap.enabled": false, | |
"python.jediEnabled": false, | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"vtools.autoHideSideBar": true, | |
"vtools.autoHideDelay": 200, | |
"window.zoomLevel": 1, | |
"python.formatting.provider": "black", | |
"python.linting.pylintEnabled": true, | |
"python.linting.pylintArgs": [ | |
"--enable=W0614" | |
], | |
"emmet.includeLanguages": { | |
"django-html": "html" | |
}, | |
"beautify.language": { | |
"html": [ | |
"htm", | |
"html", | |
"django-html" | |
] | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "HookyQR.beautify", | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "HookyQR.beautify" | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "HookyQR.beautify" | |
}, | |
"[django-html]": { | |
"editor.defaultFormatter": "HookyQR.beautify", | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true | |
}, | |
"[python-html]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "HookyQR.beautify", | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true | |
}, | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.python", | |
"editor.formatOnSave": true | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "HookyQR.beautify", | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment