mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 11:42:10 +01:00
- Updated search_results_table.html to enhance formatting and maintain consistent indentation. - Refined search_results.html layout for better structure and clarity. - Improved upload.html for better organization and readability of the upload form and data source table. - Removed unnecessary lines in package.json and streamlined devDependencies section.
48 lines
1.1 KiB
JSON
48 lines
1.1 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
|
|
}
|