eslintrc-react.js 396 B

12345678910111213141516
  1. /* eslint-env node */
  2. module.exports = {
  3. extends: [
  4. "./eslintrc-base.js",
  5. "plugin:react/recommended",
  6. "plugin:react-hooks/recommended",
  7. ],
  8. plugins: ["react-refresh"],
  9. settings: { react: { version: "18.2" } },
  10. rules: {
  11. "react-refresh/only-export-components": [
  12. "warn",
  13. { allowConstantExport: true },
  14. ],
  15. },
  16. };