aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShinigami <[email protected]>2023-04-16 16:07:16 +0200
committerGitHub <[email protected]>2023-04-16 16:07:16 +0200
commit153e0ca29742c42814a97117f7d976f23e93c0d4 (patch)
tree1f31bce33275f3403790262a56760282f4e2901e /src
parentec4d428863a4aa670338b22439031495911fbd1b (diff)
downloadfaker-153e0ca29742c42814a97117f7d976f23e93c0d4.tar.xz
faker-153e0ca29742c42814a97117f7d976f23e93c0d4.zip
chore: unify todos (#2063)
Diffstat (limited to 'src')
-rw-r--r--src/modules/helpers/index.ts2
-rw-r--r--src/modules/helpers/unique.ts2
-rw-r--r--src/modules/image/providers/lorempicsum.ts2
-rw-r--r--src/utils/types.ts2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts
index 937fe21c..0f1c93a8 100644
--- a/src/modules/helpers/index.ts
+++ b/src/modules/helpers/index.ts
@@ -1251,7 +1251,7 @@ export class HelpersModule {
*/
unique<
Method extends (
- // TODO christopher 2023-02-14: This `any` type can be fixed by anyone if they want to.
+ // TODO @Shinigami92 2023-02-14: This `any` type can be fixed by anyone if they want to.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
...parameters: any[]
) => RecordKey
diff --git a/src/modules/helpers/unique.ts b/src/modules/helpers/unique.ts
index c6668137..8276c862 100644
--- a/src/modules/helpers/unique.ts
+++ b/src/modules/helpers/unique.ts
@@ -83,7 +83,7 @@ Try adjusting maxTime or maxRetries parameters for faker.helpers.unique().`
*/
export function exec<
Method extends (
- // TODO christopher 2023-02-14: This `any` type can be fixed by anyone if they want to.
+ // TODO @Shinigami92 2023-02-14: This `any` type can be fixed by anyone if they want to.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
...parameters: any[]
) => RecordKey
diff --git a/src/modules/image/providers/lorempicsum.ts b/src/modules/image/providers/lorempicsum.ts
index b9189a0f..6299cf1b 100644
--- a/src/modules/image/providers/lorempicsum.ts
+++ b/src/modules/image/providers/lorempicsum.ts
@@ -101,7 +101,7 @@ export class LoremPicsum {
since: '8.0',
until: '9.0',
});
- // TODO ST-DDT 2022-03-11: This method does the same as image url, maybe generate a seed, if it is missig?
+ // TODO @ST-DDT 2022-03-11: This method does the same as image url, maybe generate a seed, if it is missing?
return this.imageUrl(width, height, grayscale, blur, seed);
}
diff --git a/src/utils/types.ts b/src/utils/types.ts
index afc4c17a..8c1bfe6b 100644
--- a/src/utils/types.ts
+++ b/src/utils/types.ts
@@ -14,7 +14,7 @@ export type LiteralUnion<T extends U, U = string> =
* These would fail when invoked since they are invoked without the `new` keyword.
*/
export type Callable = (
- // TODO christopher 2023-02-14: This `any` type can be fixed by anyone if they want to.
+ // TODO @Shinigami92 2023-02-14: This `any` type can be fixed by anyone if they want to.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
...args: any[]
) => unknown;