open-law/.vscode/settings.json

49 lines
1.1 KiB
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-23 12:52:49 +00:00
"CLEANR",
2023-06-06 07:42:28 +00:00
"CUDA",
2023-05-15 20:29:10 +00:00
"Divs",
"favorited",
2023-04-20 13:10:16 +00:00
"flowbite",
2023-06-06 07:42:28 +00:00
"indeterminated",
2023-04-20 13:10:16 +00:00
"jsonify",
"pydantic",
"pytest",
2023-06-12 12:18:21 +00:00
"ruleset",
2023-05-31 13:43:33 +00:00
"scrf",
2023-06-12 12:18:21 +00:00
"semvers",
2023-05-04 11:18:49 +00:00
"siwe",
2023-05-29 13:10:38 +00:00
"sortablejs",
2023-04-20 13:10:16 +00:00
"sqlalchemy",
"subcollection",
2023-04-20 13:10:16 +00:00
"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"
],
"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,
"python.testing.pytestArgs": ["tests"],
2023-05-09 14:56:29 +00:00
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
}