fix(lint): avoid incompatible TypeScript rule

strictNullChecks: true does not work with jest.
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
Erik Michelson
2026-05-09 03:17:39 +02:00
committed by Philip Molares
parent 84c6ed769d
commit 527e06dfa7
+1
View File
@@ -23,6 +23,7 @@
"typescript/no-unsafe-member-access": "off",
"typescript/require-await": "off",
"typescript/explicit-function-return-type": "off",
"typescript/no-useless-default-assignment": "off",
"jest/no-standalone-expect": "off"
}
},