diff --git a/csv/parse.ts b/csv/parse.ts index 2ad28afd411e..c2dcc1722f4b 100644 --- a/csv/parse.ts +++ b/csv/parse.ts @@ -240,7 +240,7 @@ class Parser { } else if (options.fieldsPerRecord === 0) { _nbFields = "UNINITIALIZED"; } else { - // TODO: Should we check if it's a valid integer? + // TODO(magurotuna): Should we check if it's a valid integer? _nbFields = options.fieldsPerRecord; } diff --git a/csv/parse_stream.ts b/csv/parse_stream.ts index b94b9d9e0687..f5966989e330 100644 --- a/csv/parse_stream.ts +++ b/csv/parse_stream.ts @@ -382,7 +382,7 @@ export class CsvParseStream< } else if (this.#options.fieldsPerRecord === 0) { this.#fieldsPerRecord = "UNINITIALIZED"; } else { - // TODO: Should we check if it's a valid integer? + // TODO(magurotuna): Should we check if it's a valid integer? this.#fieldsPerRecord = this.#options.fieldsPerRecord; } diff --git a/deno.json b/deno.json index fd16adbb79aa..d1d68e0252e5 100644 --- a/deno.json +++ b/deno.json @@ -50,6 +50,7 @@ "rules": { "tags": ["recommended", "jsr"], "include": [ + "ban-untagged-todo", "camelcase", "no-import-prefix", "no-sync-fn-in-async-fn", diff --git a/dotenv/mod_test.ts b/dotenv/mod_test.ts index a3076e44ca52..bc385006e9ea 100644 --- a/dotenv/mod_test.ts +++ b/dotenv/mod_test.ts @@ -207,7 +207,7 @@ Deno.test( }, ); -//TODO test permissions +// TODO(cknight): test permissions Deno.test( "loadSync() prevents file system reads of default path parameter values by using explicit null", diff --git a/testing/_snapshot_utils.ts b/testing/_snapshot_utils.ts index 5b31a1c3c3f8..a16982c638a5 100644 --- a/testing/_snapshot_utils.ts +++ b/testing/_snapshot_utils.ts @@ -105,5 +105,5 @@ export function getSnapshotNotMatchMessage( return getErrorMessage(message, options); } -// TODO (WWRS): Remove this when we drop support for Deno 1.x +// TODO(WWRS): Remove this when we drop support for Deno 1.x export const LINT_SUPPORTED = !Deno.version.deno.startsWith("1."); diff --git a/toml/_test_utils.ts b/toml/_test_utils.ts index e6b2d5561003..6952a588fba6 100644 --- a/toml/_test_utils.ts +++ b/toml/_test_utils.ts @@ -34,7 +34,7 @@ export function convertTestCase(v: TestCase): unknown { return parseFloat(v.value.replace("inf", "Infinity")); case "bool": return v.value === "true"; - // TODO: https://github.com/denoland/std/issues/6591 + // TODO(4513ECHO): https://github.com/denoland/std/issues/6591 case "datetime": case "datetime-local": case "date-local":