chore: Remove eslint rule about deleting dynamic keys

This commit is contained in:
Joachim Van Herwegen
2023-09-12 13:53:50 +02:00
parent 154d981684
commit 661357c985
9 changed files with 5 additions and 15 deletions

View File

@@ -28,7 +28,6 @@ class MemoryLocker implements ResourceLocker {
if (this.locks[path].length > 0) {
this.locks[path].shift()!();
} else {
// eslint-disable-next-line @typescript-eslint/no-dynamic-delete
delete this.locks[path];
}
}