diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-01-17 00:32:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 00:32:59 +0100 |
commit | b26dcbc69d56b6ac5780520dad47f10460127d3e (patch) | |
tree | 1f0c45b2c39eff83a9fede7a9e6e268a5e04194b /std/encoding | |
parent | fc45a19801fe32eaf3a82ab8333f433fcfd7ca4e (diff) |
chore: Enforce ban-untagged-todo lint rule (#9135)
Diffstat (limited to 'std/encoding')
-rw-r--r-- | std/encoding/_yaml/loader/loader.ts | 2 | ||||
-rw-r--r-- | std/encoding/toml.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/std/encoding/_yaml/loader/loader.ts b/std/encoding/_yaml/loader/loader.ts index 8bd623347..322f5ce0d 100644 --- a/std/encoding/_yaml/loader/loader.ts +++ b/std/encoding/_yaml/loader/loader.ts @@ -667,7 +667,7 @@ function readDoubleQuotedScalar( if (isEOL(ch)) { skipSeparationSpace(state, false, nodeIndent); - // TODO: rework to inline fn with no type cast? + // TODO(bartlomieju): rework to inline fn with no type cast? } else if (ch < 256 && simpleEscapeCheck[ch]) { state.result += simpleEscapeMap[ch]; state.position++; diff --git a/std/encoding/toml.ts b/std/encoding/toml.ts index 0bd0ee984..6cd8faa71 100644 --- a/std/encoding/toml.ts +++ b/std/encoding/toml.ts @@ -464,7 +464,7 @@ class Parser { for (let i = 0; i < this.tomlLines.length; i++) { const line = this.tomlLines[i]; - // TODO (zekth) Handle unflat of array of tables + // TODO(zekth): Handle unflat of array of tables if (this._isGroup(line)) { // if the current group is an array we push the // parsed objects in it. |