Last active
September 10, 2018 14:54
-
-
Save shawalli/ce0bcc52f704a4476e7b68082c61a108 to your computer and use it in GitHub Desktop.
VSCode (.vscode) Portable Settings
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
# Run 'cat .vscode/extensions.txt | xargs -L1 code --install-extension' to install on new machine | |
CoenraadS.bracket-pair-colorizer | |
eamodio.gitlens | |
lextudio.restructuredtext | |
ms-python.python | |
npxms.hide-gitignored | |
oderwat.indent-rainbow | |
shardulm94.trailing-spaces | |
streetsidesoftware.code-spell-checker | |
yuichinukiyama.TabSpacer |
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
{ | |
"editor.formatOnSave": true, | |
"python.formatting.autopep8Args": [ | |
"--global-config", | |
"${workspaceRoot}/setup.cfg" | |
], | |
"python.formatting.autopep8Path": "/usr/local/bin/autopep8", | |
"python.formatting.provider": "autopep8", | |
"python.linting.enabled": true, | |
"python.linting.lintOnSave": true, | |
"python.linting.mypyEnabled": true, | |
"python.linting.mypyPath": "/usr/local/bin/mypy", | |
"python.linting.pylintEnabled": true, | |
"python.linting.pylintPath": "/usr/local/bin/pylint", | |
"python.pythonPath": "${workspaceFolder}/venv/bin/python", | |
"window.title": "${activeEditorShort}${separator}${rootName}", | |
"window.zoomLevel": 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment