Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion csv/parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion csv/parse_stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
1 change: 1 addition & 0 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"rules": {
"tags": ["recommended", "jsr"],
"include": [
"ban-untagged-todo",
"camelcase",
"no-import-prefix",
"no-sync-fn-in-async-fn",
Expand Down
2 changes: 1 addition & 1 deletion dotenv/mod_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion testing/_snapshot_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
2 changes: 1 addition & 1 deletion toml/_test_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down
Loading