31 lines
938 B
JSON
31 lines
938 B
JSON
|
|
{
|
||
|
|
"python.defaultInterpreterPath": "./venv/Scripts/python.exe",
|
||
|
|
"python.terminal.activateEnvironment": true,
|
||
|
|
"python.linting.enabled": true,
|
||
|
|
"python.linting.pylintEnabled": false,
|
||
|
|
"python.linting.flake8Enabled": true,
|
||
|
|
"python.formatting.provider": "black",
|
||
|
|
"python.formatting.blackArgs": ["--line-length", "88"],
|
||
|
|
"editor.formatOnSave": true,
|
||
|
|
"editor.codeActionsOnSave": {
|
||
|
|
"source.organizeImports": true
|
||
|
|
},
|
||
|
|
"files.exclude": {
|
||
|
|
"**/__pycache__": true,
|
||
|
|
"**/*.pyc": true,
|
||
|
|
".pytest_cache": true,
|
||
|
|
"*.egg-info": true
|
||
|
|
},
|
||
|
|
"python.testing.pytestEnabled": true,
|
||
|
|
"python.testing.pytestArgs": [
|
||
|
|
"tests"
|
||
|
|
],
|
||
|
|
"python.envFile": "${workspaceFolder}/.env",
|
||
|
|
"terminal.integrated.env.windows": {
|
||
|
|
"PYTHONPATH": "${workspaceFolder}"
|
||
|
|
},
|
||
|
|
"files.associations": {
|
||
|
|
"*.env": "properties",
|
||
|
|
"*.env.*": "properties"
|
||
|
|
}
|
||
|
|
}
|