open-law/.vscode/settings.json

52 lines
1.0 KiB
JSON

{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "none",
"python.terminal.activateEnvironment": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.venv/*/**": true
},
"cSpell.words": [
"backref",
"bookname",
"Btns",
"CLEANR",
"CUDA",
"Divs",
"flowbite",
"indeterminated",
"jsonify",
"pydantic",
"pytest",
"scrf",
"siwe",
"sortablejs",
"sqlalchemy",
"tailwindcss",
"upvoted",
"viewonly",
"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"
],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
}