.eslintrc.js 309 B

123456789101112131415
  1. const { defineConfig } = require('@flowgram.ai/eslint-config');
  2. module.exports = defineConfig({
  3. preset: 'web',
  4. packageRoot: __dirname,
  5. rules: {
  6. 'no-console': 'off',
  7. 'react/prop-types': 'off',
  8. },
  9. settings: {
  10. react: {
  11. version: 'detect', // 自动检测 React 版本
  12. },
  13. },
  14. });