mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 06:32:10 +01:00
- Introduced .pre-commit-config.yaml for pre-commit hooks using uv-pre-commit. - Created lint.sh script to run Ruff and Black for linting and formatting. - Added test.sh script to execute tests with coverage reporting. - Configured .uv file for uv settings including lockfile management and dependency resolution. - Updated Makefile with targets for virtual environment setup, dependency installation, linting, testing, formatting, and database migrations. - Established requirements.txt with main and development dependencies for the project.
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"[css]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[html]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[python]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit",
|
|
"source.organizeImports": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[toml]": {
|
|
"editor.defaultFormatter": "tamasfe.even-better-toml"
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"emmet.includeLanguages": {
|
|
"django-html": "html",
|
|
"jinja-html": "html"
|
|
},
|
|
"emmet.syntaxProfiles": {
|
|
"html": {
|
|
"inline_break": 2
|
|
}
|
|
},
|
|
"files.associations": {
|
|
"*.html": "html"
|
|
},
|
|
"html.format.wrapAttributes": "auto",
|
|
"html.format.wrapLineLength": 100,
|
|
"notebook.codeActionsOnSave": {
|
|
"notebook.source.fixAll": "explicit",
|
|
"notebook.source.organizeImports": "explicit"
|
|
},
|
|
"notebook.formatOnSave.enabled": true,
|
|
"prettier.requireConfig": true
|
|
}
|