TextSummarization / .vscode /settings.json
asFrants's picture
add new files for docker and fast api
d95cbea
raw
history blame
459 Bytes
{
"python.linting.pylint" : false,
"python.linting.flake8" : true,
"python.linting.enabled" : true,
"python.formatting.black" : true,
"editor.formatOnSave": true,
"python.linting.flake8Args":[
"--max-line-length=88"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.testing.pytestArgs": [
"tests"
],
}