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