Files
SQLModel-CRUD-manager/.vscode/settings.json
Edkar Chachati 339f084339 Add dependencies
2023-12-22 16:55:12 -04:00

34 lines
896 B
JSON

{
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
},
"ruff.lint.args": [
"--config=pyproject.toml"
],
"black-formatter.args": [
"--config=pyproject.toml"
],
"cSpell.language": "en,es",
"cSpell.words": [
"chartboost",
"exitfirst",
"fastapi",
"pytest",
"snok",
"sqlmodel",
"stefanzweifel",
"venv",
"virtualenvs"
],
"python.analysis.typeCheckingMode": "off",
"docwriter.progress.trackFunctions": true,
"docwriter.progress.trackClasses": true,
"docwriter.progress.trackTypes": true,
"docwriter.hotkey.windows": "Alt + .",
"docwriter.style": "RustDoc",
}