Disable no-explicit-any in test directory

This commit is contained in:
Robert
2024-02-06 17:00:13 +00:00
parent 55c86016a3
commit e3a6678dc7

View File

@@ -0,0 +1,10 @@
module.exports = {
overrides: [
{
files: ["*"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
},
},
],
};