open-law/.vscode/settings.json

30 lines
756 B
JSON
Raw Normal View History

2023-04-20 13:10:16 +00:00
{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
"python.terminal.activateEnvironment": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.venv/*/**": true
},
"cSpell.words": [
"flowbite",
"jsonify",
"pydantic",
"pytest",
"sqlalchemy",
"tailwindcss",
"werkzeug",
"wrongpassword",
"wsgi",
"wtforms"
],
"python.testing.unittestArgs": ["-v", "-s", "./tests", "-p", "*test.py"],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": ["tests"]
}