Skip to content

Instantly share code, notes, and snippets.

View antoinedelia's full-sized avatar

Antoine Delia antoinedelia

View GitHub Profile
@antoinedelia
antoinedelia / settings.json
Last active August 16, 2021 09:51
Settings for Python VsCode
{
"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",