2023-10-04 17:52:39 -04:00

10 lines
289 B
TypeScript

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