Last active
August 21, 2018 17:30
-
-
Save albertomurillo/be445487e6bb15cbdde14fab7348bd31 to your computer and use it in GitHub Desktop.
vscode.conf
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, | |
"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