diff options
| author | ST-DDT <[email protected]> | 2024-10-19 13:39:30 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-19 13:39:30 +0200 |
| commit | 7141608aa0a570be88dc7f0ffb6dbd9a2c72c2ab (patch) | |
| tree | 2a17c3eacfcd9fbbaa32db44c53589bde1426944 /src/internal | |
| parent | 90147150837e2a7222b4876b86223fc1e67100a0 (diff) | |
| download | faker-7141608aa0a570be88dc7f0ffb6dbd9a2c72c2ab.tar.xz faker-7141608aa0a570be88dc7f0ffb6dbd9a2c72c2ab.zip | |
infra(eslint): limit usage of globals in src (#3191)
Diffstat (limited to 'src/internal')
| -rw-r--r-- | src/internal/base64.ts | 1 | ||||
| -rw-r--r-- | src/internal/deprecated.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/internal/base64.ts b/src/internal/base64.ts index b346538a..e2702355 100644 --- a/src/internal/base64.ts +++ b/src/internal/base64.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-undef -- This file serves as a compatibility layer between environments */ /** * This works the same as `Buffer.from(input).toString('base64')` * to work on both Node.js and browser environment. diff --git a/src/internal/deprecated.ts b/src/internal/deprecated.ts index fe2cdc94..3d82eb2e 100644 --- a/src/internal/deprecated.ts +++ b/src/internal/deprecated.ts @@ -43,5 +43,6 @@ export function deprecated(opts: DeprecatedOptions): void { message += `. Please use ${opts.proposed} instead`; } + // eslint-disable-next-line no-undef -- Using console here is intentional and required console.warn(`${message}.`); } |
