mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 04:42:07 +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.
36 lines
1005 B
JSON
36 lines
1005 B
JSON
{
|
|
"devDependencies": {
|
|
"markdownlint-cli2": "^0.18.1",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-jinja-template": "^2.1.0"
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!.trunk/**\" \"!.venv/**\" \"!node_modules/**\"",
|
|
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\" \"!.trunk/**\" \"!.venv/**\" \"!node_modules/**\""
|
|
},
|
|
"markdownlint-cli2": {
|
|
"config": {
|
|
"MD007": {
|
|
"indent": 4,
|
|
"start_indented": false,
|
|
"start_indent": 4
|
|
},
|
|
"MD013": false,
|
|
"MD030": {
|
|
"ul_single": 3,
|
|
"ol_single": 2,
|
|
"ul_multi": 3,
|
|
"ol_multi": 2
|
|
},
|
|
"MD033": false
|
|
},
|
|
"ignores": [
|
|
"node_modules",
|
|
".git",
|
|
"*.json"
|
|
]
|
|
}
|
|
}
|