open-law/.vscode/settings.json

54 lines
1.0 KiB
JSON
Raw Normal View History

2023-04-20 16:10:16 +03:00
{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
2023-05-09 17:56:29 +03:00
"python.formatting.provider": "none",
2023-04-20 16:10:16 +03:00
"python.terminal.activateEnvironment": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.venv/*/**": true
},
"cSpell.words": [
2023-05-24 17:06:33 +03:00
"backref",
"bookname",
2023-05-09 17:32:07 +03:00
"Btns",
2023-05-23 15:52:49 +03:00
"CLEANR",
2023-06-06 10:42:28 +03:00
"CUDA",
2023-05-15 23:29:10 +03:00
"Divs",
2023-04-20 16:10:16 +03:00
"flowbite",
2023-06-06 10:42:28 +03:00
"indeterminated",
2023-04-20 16:10:16 +03:00
"jsonify",
"pydantic",
"pytest",
2023-06-12 15:18:21 +03:00
"ruleset",
2023-05-31 16:43:33 +03:00
"scrf",
2023-06-12 15:18:21 +03:00
"semvers",
2023-05-04 14:18:49 +03:00
"siwe",
2023-05-29 16:10:38 +03:00
"sortablejs",
2023-04-20 16:10:16 +03:00
"sqlalchemy",
"tailwindcss",
2023-05-18 16:35:50 +03:00
"upvoted",
2023-04-24 11:31:54 +03:00
"viewonly",
2023-04-20 16:10:16 +03:00
"werkzeug",
"wrongpassword",
"wsgi",
"wtforms"
],
2023-05-09 17:56:29 +03:00
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"*test.py"
],
2023-04-20 16:10:16 +03:00
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
2023-05-09 17:56:29 +03:00
"python.testing.pytestArgs": [
"tests"
],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
}