.eslintrc.js 262 B

1234567891011
  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/no-deprecated': 'off',
  8. '@flowgram.ai/e2e-data-testid': 'off',
  9. },
  10. });