.eslintrc.cjs 250 B

12345678910111213
  1. module.exports = {
  2. env: { browser: true, es2020: true },
  3. extends: [
  4. 'weseek/react',
  5. ],
  6. plugins: ['react-refresh'],
  7. rules: {
  8. 'react-refresh/only-export-components': [
  9. 'warn',
  10. { allowConstantExport: true },
  11. ],
  12. },
  13. };