import { error, off } from '../constants'; import { ReactRules } from 'eslint-define-config/src/rules/react'; export const reactRules: Partial = { 'react/display-name': off, 'react/no-children-prop': error, 'react/prop-types': off, 'react/react-in-jsx-scope': off, };