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.
30 lines
865 B
30 lines
865 B
{ |
|
"python.defaultInterpreterPath": ".venv/bin/python", |
|
"python.testing.pytestEnabled": true, |
|
"python.linting.enabled": true, |
|
"python.linting.flake8Enabled": true, |
|
"editor.renderWhitespace": "all", |
|
"editor.rulers": [79], |
|
"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, |
|
".venv": true |
|
}, |
|
"files.watcherExclude": { |
|
"**/.git/**": true, |
|
"**/node_modules/*/**": true, |
|
"**/venv/**": true, |
|
"**/.venv/**": true |
|
}, |
|
"files.insertFinalNewline": true, |
|
"git.ignoreLimitWarning": true, |
|
"esbonio.sphinx.confDir": "${workspaceFolder}/docs/source", |
|
}
|
|
|