Programming/React

eslint any ํƒ€์ž…์— ๋Œ€ํ•œ ์ฒดํฌ ํ•ด์ œ

seulye 2024. 10. 7. 14:46

eslint.config.js ํŒŒ์ผ

 

rules์— 

"@typescript-eslint/no-explicit-any": "off",

์ถ”๊ฐ€

rules: {
      ...reactHooks.configs.recommended.rules,
      "react-refresh/only-export-components": [
        "warn",
        { allowConstantExport: true },
      ],
      "@typescript-eslint/no-explicit-any": "off",
    },