.eslintrc.js 343 B

12345678910111213141516
  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. 'react/no-deprecated': 'off',
  9. },
  10. settings: {
  11. react: {
  12. version: 'detect', // 自动检测 React 版本
  13. },
  14. },
  15. });