12345678910111213141516 |
- /* eslint-env node */
- module.exports = {
- extends: [
- "./eslintrc-base.js",
- "plugin:react/recommended",
- "plugin:react-hooks/recommended",
- ],
- plugins: ["react-refresh"],
- settings: { react: { version: "18.2" } },
- rules: {
- "react-refresh/only-export-components": [
- "warn",
- { allowConstantExport: true },
- ],
- },
- };
|