* Gets the lock file path for a task list (used for list-level locking)
(taskListId: string)
| 502 | * Gets the lock file path for a task list (used for list-level locking) |
| 503 | */ |
| 504 | function getTaskListLockPath(taskListId: string): string { |
| 505 | return join(getTasksDir(taskListId), '.lock') |
| 506 | } |
| 507 | |
| 508 | /** |
| 509 | * Ensures the lock file exists for a task list |
no test coverage detected