- Foldable left panel (user profile) and right panel (task details) - Clicking a task in the list or graph node selects it and shows details - Both views (task list + graph) always mounted via absolute inset-0 for correct canvas dimensions; tabs toggle visibility with opacity - Graph node selection animation: other nodes repel outward (charge -600), then selected node smoothly slides to center (500ms cubic ease-out), then charge restores to -120 and graph stabilizes - Graph re-fits on tab switch and panel resize via ResizeObserver - Fix UUID string IDs throughout (backend returns UUIDs, not integers) - Add TaskDetailPanel, UserPanel components - Add CLAUDE.md project documentation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
{
|
|
"root": true,
|
|
"extends": "@ljharb",
|
|
"rules": {
|
|
"complexity": 0,
|
|
"func-style": [2, "declaration"],
|
|
"indent": [2, 4],
|
|
"max-lines": 1,
|
|
"max-lines-per-function": 1,
|
|
"max-params": [2, 4],
|
|
"max-statements": 0,
|
|
"max-statements-per-line": [2, { "max": 2 }],
|
|
"no-magic-numbers": 0,
|
|
"no-param-reassign": 1,
|
|
"strict": 0, // TODO
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["test/**", "test-*", "example/**"],
|
|
"extends": "@ljharb/eslint-config/tests",
|
|
"rules": {
|
|
"id-length": 0,
|
|
},
|
|
},
|
|
{
|
|
"files": ["example/**"],
|
|
"rules": {
|
|
"no-console": 0,
|
|
},
|
|
},
|
|
{
|
|
"files": ["test/browser/**"],
|
|
"env": {
|
|
"browser": true,
|
|
},
|
|
},
|
|
{
|
|
"files": ["test/bigint*"],
|
|
"rules": {
|
|
"new-cap": [2, { "capIsNewExceptions": ["BigInt"] }],
|
|
},
|
|
},
|
|
{
|
|
"files": "index.js",
|
|
"globals": {
|
|
"HTMLElement": false,
|
|
},
|
|
"rules": {
|
|
"no-use-before-define": 1,
|
|
},
|
|
},
|
|
],
|
|
}
|