aboutsummaryrefslogtreecommitdiff
path: root/test/modules/helpers.spec.ts
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2023-11-04 10:40:06 +0100
committerGitHub <[email protected]>2023-11-04 09:40:06 +0000
commit358572d9e76f4cd22bfcb09c092a1eaf3a31f005 (patch)
tree836d9b14d2c7e338610dc36073e799a7723af8c8 /test/modules/helpers.spec.ts
parent22003bbac9518befeaacfc75c9360a273f0ea6b4 (diff)
downloadfaker-358572d9e76f4cd22bfcb09c092a1eaf3a31f005.tar.xz
faker-358572d9e76f4cd22bfcb09c092a1eaf3a31f005.zip
infra(typescript-eslint): strict-type-checked (#2467)
Diffstat (limited to 'test/modules/helpers.spec.ts')
-rw-r--r--test/modules/helpers.spec.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/modules/helpers.spec.ts b/test/modules/helpers.spec.ts
index e683d1d8..3f850086 100644
--- a/test/modules/helpers.spec.ts
+++ b/test/modules/helpers.spec.ts
@@ -95,6 +95,7 @@ describe('helpers', () => {
enum MixedFoo {
Foo = 0,
Bar = 1,
+ // eslint-disable-next-line @typescript-eslint/no-mixed-enums
FooName = 'Foo',
BarName = 'Bar',
}
@@ -256,6 +257,7 @@ describe('helpers', () => {
enum FooMixedEnum {
Foo = 0,
Bar = 1,
+ // eslint-disable-next-line @typescript-eslint/no-mixed-enums
StrFoo = 'FOO',
StrBar = 'BAR',
}