TextSummarization / .vscode /settings.json
asFrants's picture
add flake8 and black
957c035
{
"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"
],
"black-formatter.importStrategy": "fromEnvironment",
"flake8.importStrategy": "fromEnvironment",
}