mirror of https://github.com/logos-co/open-law.git
44 lines
923 B
JSON
44 lines
923 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",
|
|
"Btns",
|
|
"flowbite",
|
|
"jsonify",
|
|
"pydantic",
|
|
"pytest",
|
|
"siwe",
|
|
"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"
|
|
],
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
}
|
|
} |