summaryrefslogtreecommitdiff
path: root/std/fs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-01-17 00:32:59 +0100
committerGitHub <noreply@github.com>2021-01-17 00:32:59 +0100
commitb26dcbc69d56b6ac5780520dad47f10460127d3e (patch)
tree1f0c45b2c39eff83a9fede7a9e6e268a5e04194b /std/fs
parentfc45a19801fe32eaf3a82ab8333f433fcfd7ca4e (diff)
chore: Enforce ban-untagged-todo lint rule (#9135)
Diffstat (limited to 'std/fs')
-rw-r--r--std/fs/copy_test.ts2
-rw-r--r--std/fs/expand_glob.ts1
2 files changed, 1 insertions, 2 deletions
diff --git a/std/fs/copy_test.ts b/std/fs/copy_test.ts
index 32933b8e0..40d7cb19a 100644
--- a/std/fs/copy_test.ts
+++ b/std/fs/copy_test.ts
@@ -327,7 +327,7 @@ testCopySync(
assert(destStatInfo.atime instanceof Date);
assert(destStatInfo.mtime instanceof Date);
- // TODO: Activate test when https://github.com/denoland/deno/issues/2411
+ // TODO(bartlomieju): Activate test when https://github.com/denoland/deno/issues/2411
// is fixed
// assertEquals(destStatInfo.atime, srcStatInfo.atime);
// assertEquals(destStatInfo.mtime, srcStatInfo.mtime);
diff --git a/std/fs/expand_glob.ts b/std/fs/expand_glob.ts
index 358206558..ec0f560d8 100644
--- a/std/fs/expand_glob.ts
+++ b/std/fs/expand_glob.ts
@@ -32,7 +32,6 @@ interface SplitPath {
winRoot?: string;
}
-// TODO: Maybe make this public somewhere.
function split(path: string): SplitPath {
const s = SEP_PATTERN.source;
const segments = path