python-escpos/.vscode/settings.json

19 lines
539 B
JSON
Raw Permalink Normal View History

2020-05-10 23:15:41 +00:00
{
"esbonio.sphinx.confDir": "${workspaceFolder}/doc",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.eggs/**": true,
"**/.hypothesis/**": true,
"**/.tox/**": true,
},
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"python.formatting.provider": "black",
2023-09-06 21:42:01 +00:00
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
2023-09-06 21:42:01 +00:00
},
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
2020-05-10 23:15:41 +00:00
}