mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 09:52:09 +01:00
- Improved date parsing in fetch_and_store_chat_data to support multiple formats and added error logging for unparseable dates. - Enhanced parse_and_store_transcript_messages to handle empty transcripts and expanded message pattern recognition for both User and Assistant. - Implemented intelligent splitting of transcripts based on detected patterns and timestamps, with fallback mechanisms for unrecognized formats. - Updated documentation for Celery and Redis setup, troubleshooting, and project structure. - Added markdown linting configuration and scripts for code formatting. - Updated Nginx configuration to change the web server port. - Added xlsxwriter dependency for Excel file handling in project requirements.
34 lines
708 B
Plaintext
34 lines
708 B
Plaintext
{
|
|
"arrowParens": "always",
|
|
"bracketSpacing": true,
|
|
"embeddedLanguageFormatting": "auto",
|
|
"htmlWhitespaceSensitivity": "css",
|
|
"insertPragma": false,
|
|
"jsxSingleQuote": false,
|
|
"printWidth": 100,
|
|
"proseWrap": "preserve",
|
|
"quoteProps": "as-needed",
|
|
"requirePragma": false,
|
|
"semi": true,
|
|
"singleQuote": false,
|
|
"useTabs": false,
|
|
"overrides": [
|
|
{
|
|
"files": ["*.html"],
|
|
"options": {
|
|
"parser": "jinja-template"
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.md", "*.markdown"],
|
|
"options": {
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"proseWrap": "preserve",
|
|
"printWidth": 100
|
|
}
|
|
}
|
|
],
|
|
"plugins": ["prettier-plugin-jinja-template"]
|
|
}
|