You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
949 B
31 lines
949 B
{ |
|
"python.pythonPath": "venv/bin/python", |
|
"python.testing.pytestEnabled": true, |
|
"python.linting.enabled": true, |
|
"python.linting.pylintEnabled": true, |
|
"python.linting.pycodestyleEnabled": true, |
|
"python.linting.pycodestylePath": "pycodestyle", |
|
"python.formatting.provider": "autopep8", |
|
"editor.renderWhitespace": "all", |
|
"editor.rulers": [80], |
|
"files.exclude":{ |
|
"**/.git": true, |
|
"**/.DS_Store": true, |
|
"**/__pycache__": true, |
|
"**/.pytest_cache": true, |
|
"**/*.egg-info": true, |
|
".coverage": true, |
|
"cov.xml": true, |
|
"build": true, |
|
"dist": true, |
|
"venv": true |
|
}, |
|
"files.watcherExclude": { |
|
"**/.git/**": true, |
|
"**/node_modules/*/**": true, |
|
"**/venv/**": true |
|
}, |
|
"files.insertFinalNewline": true, |
|
"git.ignoreLimitWarning": true, |
|
"restructuredtext.confPath": "${workspaceFolder}/docs/source", |
|
}
|
|
|