open-law/.vscode/settings.json

50 lines
1002 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,
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-05-24 14:06:33 +00:00
"backref",
"bookname",
2023-05-09 14:32:07 +00:00
"Btns",
2023-05-24 14:26:39 +00:00
"CUDA",
2023-05-23 12:52:49 +00:00
"CLEANR",
2023-05-15 20:29:10 +00:00
"Divs",
2023-04-20 13:10:16 +00:00
"flowbite",
"jsonify",
"pydantic",
"pytest",
2023-05-31 13:43:33 +00:00
"scrf",
2023-05-04 11:18:49 +00:00
"siwe",
2023-04-20 13:10:16 +00:00
"sqlalchemy",
"tailwindcss",
2023-05-18 13:35:50 +00:00
"upvoted",
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"
}
}