UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

26 lines (23 loc) 494 B
import {remotionFlatConfig} from '@remotion/eslint-config-internal'; const config = remotionFlatConfig({react: false}); export default [ { ...config, rules: { ...config.rules, '@typescript-eslint/no-use-before-define': 'off', 'no-restricted-imports': [ 'error', { patterns: ['@remotion/*/src/*', 'remotion/src/*'], paths: ['remotion', 'react', 'react-dom'], }, ], }, ignores: ['src/browser/**'], }, { ...config, files: ['src/test/**'], }, ];