mirror of https://github.com/logos-co/open-law.git
32 lines
788 B
JSON
32 lines
788 B
JSON
{
|
|
"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": [
|
|
"bookname",
|
|
"flowbite",
|
|
"jsonify",
|
|
"pydantic",
|
|
"pytest",
|
|
"sqlalchemy",
|
|
"tailwindcss",
|
|
"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"]
|
|
}
|