Skip to content

Instantly share code, notes, and snippets.

@CamiloGarciaLaRotta
Created April 2, 2019 18:06
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 CamiloGarciaLaRotta/a41a3dc3e13b3d9219af4a677e08ba4a to your computer and use it in GitHub Desktop.
Save CamiloGarciaLaRotta/a41a3dc3e13b3d9219af4a677e08ba4a to your computer and use it in GitHub Desktop.
MOE VSCode settings
{
"python.pythonPath": "${workspaceFolder}/.venv/bin/python",
"python.autoComplete.addBrackets": true,
"python.unitTest.unittestEnabled": true,
"python.unitTest.pyTestEnabled": false,
"python.unitTest.nosetestsEnabled": false,
"python.linting.pylintArgs": [
"--ignored-classes=Resource",
"--max-line-length=135"
],
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=135"
],
"autoDocstring.docstringFormat": "google",
"autoDocstring.includeDescription": true,
"autoDocstring.quoteStyle": "'''",
"git.ignoreLimitWarning": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment