eslint.config.js 374 B

12345678910111213141516
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { defineFlatConfig } from '@flowgram.ai/eslint-config';
  6. import path from 'path';
  7. import { fileURLToPath } from 'url';
  8. const __dirname = path.dirname(fileURLToPath(import.meta.url));
  9. export default defineFlatConfig({
  10. preset: 'base',
  11. packageRoot: __dirname,
  12. });