- Fix httpx version conflict: requirements-dev.txt now uses >=0.27.0 to match requirements.txt - Extract CSAT helper functions to csatUtils.ts to fix react-refresh/only-export-components - Remove default export from admin/EmptyState.tsx shim (same rule) - Fix empty catch block in Modal.tsx (no-empty) - Add eslint-disable comments for intentional setState-in-effect patterns in FlowAnalyticsPanel, QuickLaunch, NodeEditorPanel, useCachedQuota, MyAnalyticsPage, TeamAnalyticsPage - Add eslint-disable comments for intentional _children destructure in NodeEditorPanel - Fix _parentId unused var in useTreeLayout.ts - Rewrite usePaginationParams.ts to avoid reading refs during render Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
190 B
Plaintext
14 lines
190 B
Plaintext
# Include production dependencies
|
|
-r requirements.txt
|
|
|
|
# Testing
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.23.0
|
|
httpx>=0.27.0
|
|
pytest-cov==4.1.0
|
|
|
|
# Code quality
|
|
black==24.1.1
|
|
flake8==7.0.0
|
|
mypy==1.8.0
|