.eslintrc.js 409 B

1234567891011121314151617181920
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. const { defineConfig } = require('@flowgram.ai/eslint-config');
  6. module.exports = defineConfig({
  7. preset: 'web',
  8. packageRoot: __dirname,
  9. rules: {
  10. 'no-console': 'off',
  11. 'react/prop-types': 'off',
  12. },
  13. settings: {
  14. react: {
  15. version: 'detect', // 自动检测 React 版本
  16. },
  17. },
  18. });