/**
* Temporary ESLint configuration for v2.5.0 release
* Relaxes some rules to allow production deployment while maintaining security
*/
module.exports = {
extends: ["./eslint.config.js"],
rules: {
// Temporarily allow any types for legacy code during release
"@typescript-eslint/no-explicit-any": "warn",
// Allow console statements in debug/configuration files
"no-console": [
"error",
{
allow: ["warn", "error", "info", "debug"],
},
],
// Allow unused vars with underscore prefix
"no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
// Temporarily allow conditional expects in complex test scenarios
"jest/no-conditional-expect": "warn",
},
};