Last active
August 16, 2021 09:51
-
-
Save antoinedelia/e3a7eaa086c2a725bfe161b284c57ced to your computer and use it in GitHub Desktop.
Settings for Python VsCode
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
{ | |
"python.pythonPath": "/Users/antoine.delia/.pyenv/versions/3.9.0/bin/python", | |
"python.formatting.autopep8Args": ["--max-line-length", "100"], | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.linting.enabled": true, | |
"python.linting.flake8Args": [ | |
"--max-line-length", "200" | |
], | |
"autoDocstring.docstringFormat": "sphinx", | |
"autoDocstring.guessTypes": true, | |
"markdown.extension.toc.updateOnSave": false, | |
"carbon.theme": "cobalt", | |
"python.analysis.extraPaths": ["./business-facing"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment