Skip to content

Instantly share code, notes, and snippets.

@ddelizia
Last active August 6, 2018 07:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ddelizia/f6a2d49680867fde7e145d977e16d5c8 to your computer and use it in GitHub Desktop.
Save ddelizia/f6a2d49680867fde7e145d977e16d5c8 to your computer and use it in GitHub Desktop.
{
"code-runner.runInTerminal": true,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Cobalt2",
"editor.fontSize": 12,
"editor.formatOnSave": true,
"files.autoSaveDelay": 10000,
"files.autoSave": "afterDelay",
"python.pythonPath": "${workspaceFolder}/venv/bin/python",
"python.linting.enabled": true,
"python.autoComplete.addBrackets": true,
"python.unitTest.unittestEnabled": true,
"python.unitTest.unittestArgs": [
"-v",
"-s",
".",
"-p",
"test_*.py"
],
"python.unitTest.pyTestEnabled": true,
"python.unitTest.pyTestPath": "${python.pythonPath} -m pytest",
"python.unitTest.pyTestArgs": [],
"python.unitTest.cwd": "${workspaceFolder}",
"python.linting.mypyArgs": [
"--ignore-missing-imports",
"--follow-imports=silent",
"disable=E1101"
],
"python.linting.flake8Path": "${python.pythonPath} -m flake8",
"python.linting.pylintPath": "${python.pythonPath} -m pylint",
"window.zoomLevel": 0,
}
@ddelizia
Copy link
Author

ddelizia commented Aug 6, 2018

Add setting for visual studio code

curl -L  https://gist.githubusercontent.com/ddelizia/f6a2d49680867fde7e145d977e16d5c8/raw/ > ~/Library/Application\ Support/Code/User/settings.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment