2023-04-20 13:10:16 +00:00
|
|
|
{
|
|
|
|
"python.linting.pylintEnabled": false,
|
|
|
|
"python.linting.flake8Enabled": true,
|
|
|
|
"python.linting.enabled": true,
|
2023-05-09 14:56:29 +00:00
|
|
|
"python.formatting.provider": "none",
|
2023-04-20 13:10:16 +00:00
|
|
|
"python.terminal.activateEnvironment": true,
|
|
|
|
"files.watcherExclude": {
|
|
|
|
"**/.git/objects/**": true,
|
|
|
|
"**/.git/subtree-cache/**": true,
|
|
|
|
"**/node_modules/*/**": true,
|
|
|
|
"**/.venv/*/**": true
|
|
|
|
},
|
|
|
|
"cSpell.words": [
|
2023-04-21 09:06:03 +00:00
|
|
|
"bookname",
|
2023-05-09 14:32:07 +00:00
|
|
|
"Btns",
|
2023-04-20 13:10:16 +00:00
|
|
|
"flowbite",
|
|
|
|
"jsonify",
|
|
|
|
"pydantic",
|
|
|
|
"pytest",
|
2023-05-04 11:18:49 +00:00
|
|
|
"siwe",
|
2023-04-20 13:10:16 +00:00
|
|
|
"sqlalchemy",
|
|
|
|
"tailwindcss",
|
2023-04-24 08:31:54 +00:00
|
|
|
"viewonly",
|
2023-04-20 13:10:16 +00:00
|
|
|
"werkzeug",
|
|
|
|
"wrongpassword",
|
|
|
|
"wsgi",
|
|
|
|
"wtforms"
|
|
|
|
],
|
2023-05-09 14:56:29 +00:00
|
|
|
"python.testing.unittestArgs": [
|
|
|
|
"-v",
|
|
|
|
"-s",
|
|
|
|
"./tests",
|
|
|
|
"-p",
|
|
|
|
"*test.py"
|
|
|
|
],
|
2023-04-20 13:10:16 +00:00
|
|
|
"python.testing.pytestEnabled": true,
|
|
|
|
"python.testing.unittestEnabled": false,
|
2023-05-09 14:56:29 +00:00
|
|
|
"python.testing.pytestArgs": [
|
|
|
|
"tests"
|
|
|
|
],
|
|
|
|
"[python]": {
|
|
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
|
|
}
|
|
|
|
}
|