Last active
June 29, 2021 18:50
-
-
Save KhalidCK/5c20d05a9a670cea60e6d704acfc330d to your computer and use it in GitHub Desktop.
vscode extensions - https://code.visualstudio.com/docs/editor/extension-marketplace#_workspace-recommended-extensions
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
{ | |
"recommendations": ["exiasr.hadolint"] | |
} |
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
{ | |
"recommendations": ["vscodevim.vim", "PKief.material-icon-theme","yzhang.markdown-all-in-one","streetsidesoftware.code-spell-checker"] | |
} |
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
{ | |
"recommendations": ["ms-python.python", "njpwerner.autodocstring"] | |
} |
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
{ | |
"recommendations": ["moctref.vetur", "sdras.vue-vscode-snippets"] | |
} |
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.formatOnSave": true, | |
"python.testing.pytestEnabled": true, | |
"markdown.extension.toc.updateOnSave": false, | |
"python.formatting.provider": "black", | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.linting.mypyEnabled": true, | |
"[python]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnSaveMode": "file", | |
"editor.defaultFormatter": "ms-python.python" | |
}, | |
"[markdown]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnSaveMode": "file", | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment