You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 line
556 B

  1. module.exports = {
  2. root: true,
  3. env: { browser: true, es2020: true },
  4. extends: [
  5. "eslint:recommended",
  6. "plugin:react/recommended",
  7. "plugin:react/jsx-runtime",
  8. "plugin:react-hooks/recommended",
  9. ],
  10. ignorePatterns: ["dist", ".eslintrc.cjs"],
  11. parserOptions: { ecmaVersion: "latest", sourceType: "module" },
  12. settings: { react: { version: "18.2" } },
  13. plugins: ["react-refresh"],
  14. rules: {
  15. "react-refresh/only-export-components": [
  16. "warn",
  17. { allowConstantExport: true },
  18. ],
  19. "no-unused-vars": "off",
  20. },
  21. };