Skip to content

Instantly share code, notes, and snippets.

@albertomurillo
Last active August 21, 2018 17:30
Show Gist options
  • Save albertomurillo/be445487e6bb15cbdde14fab7348bd31 to your computer and use it in GitHub Desktop.
Save albertomurillo/be445487e6bb15cbdde14fab7348bd31 to your computer and use it in GitHub Desktop.
vscode.conf
{
"editor.formatOnSave": true,
"explorer.confirmDragAndDrop": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"python.linting.pylintEnabled": false,
"python.linting.pep8Enabled": true,
"python.linting.pep8Path": "pycodestyle",
"python.linting.pep8Args": [
"--ignore=E501,E402"
],
"ruby.format": "rubocop",
"python.formatting.autopep8Args": [
"--ignore=E501,E402"
],
"python.pythonPath": "/usr/local/opt/python/bin/python3.7",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment