Created
May 7, 2018 10:22
-
-
Save wozozo/5f052ba426f7ed224a92dd990f11c19f to your computer and use it in GitHub Desktop.
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.fontSize": 15, | |
// "editor.fontFamily": "'Fira Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontFamily": "'Hack', Menlo, Monaco, 'Courier New', monospace", | |
"atomKeymap.promptV3Features": true, | |
"files.trimTrailingWhitespace": true, | |
"files.associations": { | |
"*.jinja2": "jinja" | |
}, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"editor.trimAutoWhitespace": true, | |
"window.zoomLevel": 0, | |
"python.pythonPath": "/opt/local/bin/python3", | |
"python.formatting.autopep8Path": "/opt/local/bin/autopep8", | |
"python.disablePromptForFeatures": [ | |
"pylint" | |
], | |
"extensions.ignoreRecommendations": true, | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.linting.flake8Path": "/opt/local/bin/flake8", | |
"python.linting.flake8Args": [ | |
"--ignore=E501" | |
], | |
"workbench.startupEditor": "welcomePage", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment